Top Banner
WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess Medical Center Harvard Medical School, Boston, USA [email protected]
13

WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

Jul 21, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

WORKSHOP

Connectivity Analysis

Correlation, Coherence and Causality

Albert C. Yang, M.D., Ph.D.

Beth Israel Deaconess Medical Center

Harvard Medical School, Boston, USA

[email protected]

Page 2: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

• Understand brain imaging data

• Understand correlation and coherence

• Computation tools for brain networks

• Visualization tools for neuroimaging

Objective

Page 3: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

Neuroimaging: NIFTI Format

• https://nifti.nimh.nih.gov/

• Matlab toolbox for reading/saving NIFIT datahttps://www.mathworks.com/matlabcentral/fileexchange/8797-tools-for-nifti-and-analyze-image

Page 4: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

Correlation Between Phased Lagged Signal

• t=0:0.01:10;

• s1=sin(2*pi*2*t);

• plot(t,s1)

• s2=sin(2*pi*2*t-pi);

• plot(t,s1,t,s2)

• corr(s1,s2)

Page 5: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

Phase Lagged Signal

Page 6: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

Correlation Between Noise

• t=1:1:1000;

• s1=rand(1000,1);

• s2=rand(1000,1);

• plot(t,s1,t,s2)

• corr(s1,s2)

Page 7: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

Uncorrelated Noise

Page 8: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

Phase Coherence

Page 9: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

Power Spectrum of S1

• [ps,fs] = pwelch(s1,hanning(length(s1)),0,length(s1),100);

• plot(fs,ps)

Page 10: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

Power Spectrum of S2

• [ps,fs] = pwelch(s2,hanning(length(s2)),0,length(s2),100);

• plot(fs,ps)

Page 11: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

Spectral Phase Coherence

• Correlation between spectral power of two signals

• [ps1,fs] = pwelch(s1,hanning(length(s1)),0,length(s1),100);

• [ps2,fs] = pwelch(s2,hanning(length(s2)),0,length(s2),100);

• corr(ps1,ps2)

Page 12: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

Computation Tools for Brain Networks

• Brain Connectivity Toolbox

• Multivariate Granger Causality Matlab Toolbox

Page 13: WORKSHOP Connectivity Analysis Correlation, Coherence and ... · WORKSHOP Connectivity Analysis Correlation, Coherence and Causality Albert C. Yang, M.D., Ph.D. Beth Israel Deaconess

Visualization Tools

• MRICron

• MicroGL

• BrainNet Viewer