Analyses for Test-Retest fmri Studies. Documentation

Size: px
Start display at page:

Download "Analyses for Test-Retest fmri Studies. Documentation"

Transcription

1 University of Wisconsin - Madison Department of Psychiatry Analyses for Test-Retest fmri Studies Documentation Erin K Molloy emolloy@wisc.edu Author Rasmus M Birn rbirn@wisc.edu Supervisor Last modified: April 3, 013 Special Thanks to Rémi Patriat and Taurean Parker

2 Contents 1 Connectivity Matrices Intraclass Correlation Coefficient.1 Definition Example MATLAB Code Kendall s Coefficient of Concordance Definition Example MATLAB Code Root-Mean-Square Deviation Definition Example MATLAB Code Dice Coefficient Definition Example MATLAB Code A Analysis of Variance for Intraclass Correlations 10 A.1 Definition A. Example A.3 MATLAB Code Please cite this as Molloy, E.K. & Birn, R.M. n.d.). Analyses for Test-Retest fmri Studies: Documentation and MATLAB Code. Birn Laboratory Resources. Retrieved month day, year, from 1

3 1 Connectivity Matrices Most of the computation time in functional MRI fmri) reliability analysis comes from the creation of the connectivity matrices. An m x m connectivity matrix is generated for each fmri scan by correlating each of the m fmri signals of interest with every fmri signal of interest and converting the resulting Pearson s r into a z r via the Fisher transform equation 1) [7]. It saves time to only compute the mm 1)/ unique correlations i.e., upper right triangle of matrix). z r 1 ) 1 + r ln 1 r ezr 1 e zr + 1 r 1) The m fmri signals of interest may be selected in different ways, such as averaging the signal within m a priori regions of interest ROIs) [4] or deriving m signals from the fmri data itself via independent components analysis [14]. Depending on the selection method, other correction/processing techniques may be desired. This includes but is not limited to physiological noise correction [8] and the removal of signals from the white matter WM), cerebral spinal fluid CSF), soft tissues, and entire brain i.e., global signal) [9] [3] [] [19]. In addition, it is common to include the six rigid body motion registration parameters in the nuisance variable regression [10]. All of these correction/processing techniques involve regressing out signals of no interest i.e., non-neuronal fluctuations) from the fmri data and carrying the residuals from this regression into the next stage of analysis. One degree of freedom will be lost for each of these regressors; however, most programs will not automatically keep track of this change in the degrees of freedom. Furthermore, when time points corrupted by motion are censored out [15], the degrees of freedom may be different for each fmri scan. Keeping track of the degrees of freedom allows for determination of significance by transforming the Pearson s r with known degrees of freedom) into a t-statistic equation ) and using the cumulative distribution function cdf) to obtain a p-value [7]. t r df t r ) 1 r df + t Conversely, a significant z r threshold can found by determining the t-statistic with known degrees of freedom) into a p-value via the inverse cdf, transforming the t-statistic into an r equation ) and substituting the r into the Fisher transform equation 1). Finally, when determining the significance, correct the p-value for multiple comparisons. For example, a Bonferroni-corrected p-value is the p-value divided by the total number of comparisons, which in this case is the mm 1)/ unique connections [0]. Intraclass Correlation Coefficient The Intraclass Correlation Coefficient ICC) is a measure of the reliability with which k judges independently rate a sample of n targets [18]. In fmri, it has been used to measure the reliability with which fmri scans judges) estimate a functional connection in individuals connectivity matrices targets). Specifically, there will exist an n x k matrix for each functional connection, where n is the number of subjects and k is the number of fmri scans [17]..1 Definition ICCs are divided into three models. In the first model, a different group of k judges, who have been selected from a larger population of judges, rate each target random effects). In the second model, the same group of k judges, who have been selected from a larger population of judges, rate each target mixed effects). In the third model, the same group of k judges, who are the only judges of interest, rate each target fixed

4 effects). Each model has a unique formulation for individual ratings 1) and the mean of several ratings k) [18]. As there is nothing intrinsic about the label scan one for each of the subjects scans all scans have occurred at different times), it is appropriate use a random effects model [17]. Let X be an n x k matrix, where n is the number of targets and k the number of judges. Then let BMS denote the between targets row) mean square, W MS denote the within target row) mean square, JMS denote the between judges column) mean square, and EMS denote the residual mean square see Appendix A). Then define ICC1, 1) BMS W MS BMS + k 1)W MS ICC1, k) BMS W MS BMS 3) ICC, 1) BMS EMS BMS + k 1)EMS + kjms)/n ICC, k) BMS EMS BMS + JMS EMS)/n 4) ICC3, 1) BMS EMS BMS + k 1)EMS ICC3, k) BMS EMS BMS 5). Example Let X be the 6 x 4 matrix [18] X Then see Table, Appendix A) BMS MS br 11.4 W MS MS wr 6.6 and by definition ICC1, 1) JMS MS bc 3.49 EMS MS e ICC1, k) ) ICC, 1) ) )/6 0.9 ICC, k) )/6 0.6 ICC3, 1) ICC3, k) )

5 .3 MATLAB Code 1 function [ ICC ] ICCX, model, r a t i n g ) % 3 % I n t r a c l a s s C o r r e l a t i o n C o e f f i c i e n t 4 % 5 % [ ICC ] ICCX, model, r a t i n g ) 6 % r e t u r n s the I n t r a c l a s s C o r r e l a t i o n C o e f f i c i e n t o f X 7 % 8 % The input X i s an n x k matrix, where n i s the number o f tar 9 % g e t s and k the number o f j u d g e s. ICCs are d i v i d e d i n t o t h r e e 10 % models f o r two types o f r a t i n g s. 11 % 1 % Model Types : 13 % 1 random e f f e c t s model > a d i f f e r e n t group o f k judges, 14 % who have been s e l e c t e d from a l a r g e r p o p u l a t i o n o f jud 15 % ges, r a t e each t a r g e t 16 % mixed e f f e c t s model > the same group o f k judges, who 17 % have been s e l e c t e d from a l a r g e r p o p u l a t i o n o f judges, 18 % r a t e each t a r g e t 19 % 3 f i x e d e f f e c t s model > the same group o f k judges, who 0 % are the only j u d g e s o f i n t e r e s t, r a t e each t a r g e t s. 1 % % Rating Types : 3 % 1 i n d i v i d u a l r a t i n g 4 % k mean o f s e v e r a l r a t i n g s 5 % 6 % S c r i p t : 7 [ n, k ] size X) ; 8 t a b l e ANOVA for ICC X, o f f ) ; 9 30 BMS t a b l e { 6, 4 } ; WMS t a b l e { 7, 4 } ; 31 JMS t a b l e { 3, 4 } ; EMS t a b l e { 8, 4 } ; 3 33 i f i s e q u a l r a t i n g, 1 ) 34 i f i s e q u a l model, 1 ) 35 ICC BMS WMS) / BMS + k 1) WMS) ; 37 e l s e i f i s e q u a l model, ) 38 ICC BMS EMS) / BMS + k 1) EMS + k JMS EMS) /n ) ; 40 e l s e i f i s e q u a l model, 3 ) 41 ICC BMS EMS) /... 4 BMS + k 1) EMS) ; 43 else 44 error Model type does not e x i s t. ) ; 45 end 46 e l s e i f i s e q u a l r a t i n g, k ) 47 i f i s e q u a l model, 1 ) 48 ICC BMS WMS) / 49 BMS; 50 e l s e i f i s e q u a l model, ) 51 ICC BMS EMS) /... 5 BMS + JMS EMS) /n ) ; 53 e l s e i f i s e q u a l model, 3 ) 54 ICC BMS EMS) / 55 BMS; 56 else 57 error Model type does not e x i s t. ) ; 58 end 59 else 60 error Rating type does not e x i s t. ) ; 61 end 6 % 4

6 3 Kendall s Coefficient of Concordance Kendall s Coefficient of Concordance W) is a measure of the consistency with which p judges rank n objects. It ranges from 0 to 1, where 0 indicates no agreement among judges and 1 indicates perfect agreement of the judges [11] [13]. In fmri, it has been used to measure the agreement of ranking subjects objects) across multiple fmri scans judges) based on the strength of one specific connection i.e., there exists one matrix per connection). It has also been used to show the agreement of ranking an individual s connections objects) across multiple functional MRI scans judges) based on the strength of each connection i.e., there exists one matrix per subject). In the former use, multiple analyses with random permutations of the scan order would be appropriate as there is nothing intrinsic about the label scan one for each of the subjects; all scans have occurred at different times [17]. 3.1 Definition Let X be p n matrix, where p is the number of judges and n is the number of objects. Let K i be the total number of unique elements in row i, and let each unique element in row i be denoted by k i, where i {1,..., K i }. Then the tie correction factor for each row is defined as K i T i t 3 k i t ki ), where t ki is the total number instances of k i in row i 6) k Let X ranked be matrix X where the elements of each row have been ranked from 1 to n. If there exists a tie between two or more elements, average the possible rankings for the elements in the tie and assign this averaged rank. Then p R X ranked i,1 R p R j n S X ranked i, p ) X ranked i,n 7) 1 p n + 1) 8) R j R) 9) and by definition 3. Example Let X be the 3 x 5 matrix W p n 3 n) 1 S ) p p T i ) 10) χ p n 1) W, df n 1 11) X As row one has ties there are instances of element 14 and 3 instances of element 13), and both row two and row three have 0 ties there is exactly 1 instance of each element), the tie correction matrix is 3 ) ) 30 T 1 3 1) ) ) ) ) ) ) ) ) ) 0 5

7 In row one, element 14 could be ranked either fourth or fifth, and element 13 could be either ranked first, second, or third. Rank all instances of 13 and 14 with the average of their respective potential ranks to create X ranked Then R ) R ) 9.0 S 7.5 9) + 5 9) + 8 9) ) ) 50.5 Thus Kendall s W is 3.3 MATLAB Code )) )) χ 3 5 1) , df p Please note that X from above should be transposed i.e., the input is an n x p matrix, where n is the number of objects and p is the number of judges). 1 function [W, Chi, df, pval ] KendallsW X) % 3 % Kendall s C o r r e l a t i o n o f Concordance W) 4 % 5 % [W] KendallsW X) 6 % r e t u r n s the Kendall s W o f X 7 % [W, Chi, df, pval ] KendallsW X) 8 % r e t u r n s the Kendall s W o f X with 9 % Friedman s Chi Squared, d e g r e e s o f 10 % freedom, and p value 11 % 1 % The input X i s an n x p matrix, where n i s the number o f 13 % o b j e c t s and p i s the number o f j u d g e s i. e., ranking o c c u r s 14 % within columns ). 15 % 16 % S c r i p t : 17 [ n, p ] size X) ; % Tie C o r r e c t i o n Factors 0 for i 1 : p 1 [V, iv, i x ] unique X :, i ) ) ; i x s sort i x ) ; t hist i x s, i x s end) ) ; 3 T i ) sum t. ˆ 3 t ) ; 4 end 5 6 % Kendall s W 7 R sum t i e d r a n k X), ) ; R mean meanr) ; 8 S sum R R mean ). ˆ ) ; 9 W 1 S ) / p ˆ nˆ3 n ) ) p sumt) ) ; % Friedman s Chi Squared, d e g r e e s o f freedom, and p value 3 Chi p n 1) W; df n 1; 33 pval gammainc Chi /, df /, upper ) ; 34 % 6

8 4 Root-Mean-Square Deviation The Root-Mean-Standard Deviation is typically used to describe the difference between predicted values from a model and experimentally observed values [16]; however, in functional MRI, it has been used examine the reproducibility with which functional MRI can estimate an individual s connectivity matrix [1]. This is easily generalizable to 3-dimensions for use on Statistical Parametric Maps SPMs). While this metric is not biased by thresholding see Dice Coefficient), it is extremely important to be working with normalized connectivity matrices. In addition, this metric would be biased by head motion or anything that would systematically alter the correlations. 4.1 Definition Let A and B be m x n matrices. Then the root-mean-square deviation is defined as A ij B ij ) A B) m n m n 1) 4. Example Let A and B be the 3 x 5 matrices A B Then A B) Thus the Root-Mean-Square Deviation is functional MRI literature [1]: I originally found the root-mean-square deviation as the mean difference in correlation used by Anderson et al. 011; however, the formula given on page 549 does not square the difference. I assumed this was an error, since this definition could result in a negative under the radical. Furthermore, in the case below the mean difference in correlation would be 0 when it is clearly 1. Let A and B be the 1 x 4 matrices A ) B 6 6 ) Then A B ) ) ) m A B) m n A B) m n 7

9 4.3 MATLAB Code 1 function [RMSD] RMSDA, B) % 3 % Root Mean Square Deviation 4 % 5 % RMSD RMSDA, B) 6 % r e t u r n s the RMSD o f A and B 7 % 8 % The i n p u t s A and B are both n d i m e n s i o n a l m a t r i c e s. 9 % 10 % S c r i p t : 11 i f i s e q u a l size A), size B) ) 1 error Matrices dimensions do not match. ) ; 13 end s q d i f s A B). ˆ ; 16 RMSD sqrt sum s q d i f s : ) ) / prod size A) ) ) ; 17 % 5 Dice Coefficient The Dice Coefficient is a measure of the similarity between sets ranging from 0 to 1, where 0 indicates the sets are disjoint and 1 indicates the sets are identical [6]. In functional MRI, it has been used to assess the similarity between those connections which survive a particular threshold in two different connectivity matrices e.g., two matrices from the same individual). This method is dependent on the choice of threshold, so it is preferable to use a meaningful threshold. For example, consider connections that survive thresholding by a significant p-value Bonferroni-corrected) to be connected i.e., exist in the set) and connections that do not survive to be un-connected i.e., do not exist in the set). This is easily generalizable to 3-dimensions for use on Statistical Parametric Maps SPMs). Note that the Dice Coefficient is applied to sets; however, each connection could be considered an edge in graph. Consider the set of nodes {a, b, c, d, e, f} and graphs G 1 and G with edges {a, c), b, c), c, d), d, e), d, f)} and {a, c), b, c), d, e), d, f)}, respectively. The Dice Coefficient between these sets of edges is 0.89 very high); however, c, d) is an edge cut making graph G disconnected. The Dice Coefficient does not account for how differences between sets of edges affect the fundamental properties of their graphs. 5.1 Definition Let A and B be sets. Then the Dice Coefficient of A and B is defined as simply A B A + B 13) functional MRI literature [5]: Let X be a m x n matrix and given a value t define the function fx ij, t) { 1 if Xij > t 0 if X ij t, where i {1,..., m} and j {1,..., n} 14) If fx ij ) 1, then we say the element with indices ij fx). Similarly, if fx ij ) 0, then we say the element with indices ij / fx). Therefore, we can define Dice Coefficient of m x n matrices A and B with 8

10 respective thresholds t A and t B as m fa ij, t A )fb ij, t B ) m 5. Example fa ij, t A ) + m fb ij, t B ) m fa, t A ) fb, t B )) ij fa, t A )) ij + m 15) fb, t B )) ij Let t A t B 13, and let A and B be the 3 x 5 matrices A B Then and Thus the Dice Coefficient is 5.3 MATLAB Code fa, t A ) fb, t B ) fa, t A ) fb, t B ) function [DC] DCA, B, ta, tb, a b s o l u t e ) % 3 % Dice C o e f f i c i e n t i. e., S i m i l a r i t y Index f o r S e t s ) 4 % 5 % [DC] DCA, B, ta, tb, a b s o l u t e ) 6 % r e t u r n s the Dice C o e f f i c i e n t o f A and B 7 % 8 % The i n p u t s A and B are both n d i m e n s i o n a l m a t r i c e s ; ta and tb 9 % are the t h r e s h o l d s f o r A and B, r e s p e c t i v e l y. Absolute i s a 10 % l o g i c a l, which determines how the t h r e s h o l d i s a p p l i e d t r u e /1 11 % a b s o l u t e value g r e a t e r than t h r e s h o l d, f a l s e /0 value great 1 % e r than t h r e s h o l d ). 13 % 14 % S c r i p t : 15 i f i s e q u a l size A), size B) ) 16 error Matrix dimensions do not match. ) ; 17 end % Threshold Matrices 0 i f i s e q u a l a b s o l u t e, 1) 1 fa abs A)>tA ; fb abs B)>tB ; else 3 fa A>tA ; fb B>tB ; 4 end 5 fafb fa. fb ; 6 7 % Dice C o e f f i c i e n t 8 DC sum fafb : ) ) ) / sum fa : ) ) + sum fb : ) ) ) ; 9 % 9

11 A Analysis of Variance for Intraclass Correlations A.1 Definition Let X be the m x n matrix. Then define the following quantities [7] SS bc ) X j m ) X ij m 1) n 1) SS br m ) ) X i X ij n m 1) n 1) MS bc SS bc n 1 MS br SS br m 1 SS wc X ij 1 m X j SS wr X ij 1 n m ) X i MS wc SS wc nm 1) MS wr SS wr mn 1) SS e X ij 1 n m ) X i 1 m X j ) X ij + m 1) n 1) MS e SS e m 1)n 1) F bc SS bc MS e, where df 1 n 1 and df m 1)n 1) F br SS br MS e, where df 1 m 1 and df m 1)n 1) Table 1: ANOVA Summary Table Source SS df MS F p Columns between SS bc n 1) MS bc F bc p bc within SS wc mn 1) MS wc Rows between SS br m 1) MS br F br p br within SS wr nm 1) MS wr Residual SS e m 1)n 1) MS e 10

12 Note that all quantities can be calculated from the same four terms: B c ) X j m A m m X ij ) X ij D m 1) n 1) B r m ) X i n A. Example Let X be the 6 x 4 matrix [18] X X Then m X i ) m ) X i ) 4 1 X j X j and thus by definition B r B c A m ) X j m m X ij ) X i n

13 m ) X ij D m 1) n 1) ) m 1) n 1) SS bc B c A SS wc D S c MS bc MS 71.5 wc 4 6 1) 3.58 SS br B r A SS wr D B r MS br MS wr ) 6.6 SS e MS e ) 4 1) 1.0 F bc , where df 1 3 and df 15 p bc 9.45e 07 F br , where df 1 5 and df 15 p br 1.35e 04 Table : ANOVA Summary Table Source SS df MS F p Columns between e-7 within Rows between e-4 within Residual

14 A.3 MATLAB Code 1 function [ t a b l e ] ANOVA for ICC X, d i s p l a y o p t ) % 3 % A n a l y s i s o f Variance f o r Ratings f o r I n t r a c l a s s C o r r e l a t i o n s ) 4 % 5 % [ t a b l e ] ANOVA for ICC X, d i s p l a y o p t ) 6 % r e t u r n s the ANOVA summary t a b l e as a c e l l array 7 % 8 % The input X i s an n x k matrix, where n i s the number o f tar 9 % g e t s and k i s he number o f j u d g e s. The o ption o f d i s p l a y i n g 10 % an ANOVA summary t a b l e i s handled by d i s p l a y o p t, which can be 11 % s e t to on d e f a u l t ) or o f f. 1 % 13 % S c r i p t : 14 [m, n ] size X) ; 15 t o t a l m n ; A sumsumx. ˆ ) ) ; 18 Bc sumsumx, 1 ). ˆ ) /m; 19 Br sumsumx, ). ˆ ) /n ; 0 D sumsumx) ) ˆ/ t o t a l ; 1 SSbc Bc D; 3 SSwc A Bc ; 4 SSbr Br D; 5 SSwr A Br ; 6 SSe A Br Bc+D; 7 8 DFbc n 1; 9 DFwc n m 1) ; 30 DFbr m 1; 31 DFwr m n 1) ; 3 DFe DFbc DFbr ; MSbc SSbc/DFbc ; 35 MSwc SSwc/DFwc ; 36 MSbr SSbr /DFbr ; 37 MSwr SSwr/DFwr ; 38 MSe SSe/DFe ; Fbc MSbc/MSe ; Pbc 1 f c d f Fbc, DFbc, DFe) ; 41 Fbr MSbr/MSe ; Pbr 1 f c d f Fbr, DFbr, DFe) ; 4 43 t a b l e { Source o f Variance SS df MS F Prob>F 44 Columns [ ] [ ] [ ] [ ] [ ] 45 betweeen SSbc DFbc MSbc Fbc Pbc 46 within SSwc DFwc MSwc [ ] [ ] 47 Rows [ ] [ ] [ ] [ ] [ ] 48 between SSbr DFbr MSbr Fbr Pbr 49 within SSwr DFwr MSwr [ ] [ ] 50 R e s i d u a l SSe DFe MSe [ ] [ ] } ; 51 5 i f i s e q u a l nargin, 1) i s e q u a l d i s p l a y o p t, on ) 53 s t a t d i s p t a b l e t a b l e, ANOVA f o r ICC, ANOVA Summary Table, ) ; 55 end 56 % 13

15 References [1] Anderson J.S., Ferguson M.A., Lopez-Larson M. & Yurgelun-Todd D. 011). Reproducibility of Single- Subject Functional Connectivity Measurements. American Journal of Neuroradiology, 33), [] Anderson J.S., Druzgal T.J., Lopez-Larson M., Jeong E.K., Desai K. & Yurgelun-Todd D. 011). Network anticorrelations, global regression, and phase-shifted soft tissue correction. Human Brain Mapping, 36), [3] Behzadi Y., Restom K., Liau J. & Liu T.T. 007). A Component Based Noise Correction Method CompCor) for BOLD and Perfusion Based fmri. NeuroImage, 371), [4] Biswal B., Yetkin F.Z., Haughton V.M. & Hyde J.S. 1995). Functional connectivity in the motor cortex of resting brain using echo-planar MRI. Magnetic Resonance in Medicine, 344), [5] Craddock R.C., James G.A., Holtzheimer, III P.E., Hu X.P. & Mayber H.S. 011). A Whole Brain fmri Atlas Generated via Spatially Constrained Spectral Clustering. Human Brain Mapping, 338), [6] Dice L.R. 1945). Measures of the Amount of Ecologic Association Between Species. Ecology, 63), [7] Frank H. & Althoen S.C. 1994). Statistics: Concepts and Applications. New York, NY: Cambridge University Press, pages , 584, [8] Glover G.H., Li, T.Q. & Ress D. 000). Images-Based Method for Retrospective Correction of Physiological Motion Effects in fmri: RETROICOR. Magnetic Resonance in Medicine, 441), [9] Jo H.J., Saad Z.S., Simmons W.K., Milbury L.A. &Cox R.W. 010). Mapping sources of correlation in resting state FMRI, with artifact detection and removal. NeuroImage, 5), [10] Johnstone T., Ores Walsh K.S., Greischar L.L., Alexander A.L., Fox A.S., Davidson R.J. & Oakes T.R. 006). Motion correction and use of motion covariates in multiple-subject fmri analysis. Human Brain Mapping, 710), [11] Kendall M.G. & Smith B.B. 1939). The Problem of m Rankings. The Annals of Mathematical Statisitcs, 103), [1] LaTeX n.d.). In WikiBooks - Open books for an open world. Retrieved September 9, 01, from [13] Legendre P. 005). Species Associations: The Kendall Coefficient of Concordance Revisited. Journal of Agricultural, Biological and Environmental Statistics, 10), [14] McKeon M.J., Hansen L.K. & Sejnowk T.J. 003). Independent component analysis of functional MRI: what is signal and what is noise? Curr. Opin. Neurobiology, 13, [15] Power J.D., Barnes K.A., Snyder A.Z., Shlagger B.L. & Petersen S.E. 01). Spurious but systematic correlations in functional connectivity MRI networks arise from subject motion. NeuroImage, 593), [16] Root-Mean-Square Deviation. n.d.). In Wikipedia. Retrieved September 9, 01, from deviation. [17] Shehzad Z., Kelly A.M., Reiss P.T., Gee D.J., Gotimer K., Uddin L.Q., Lee S.H., Margulies D.S., Roy A.K., Biswal B.B., Petkova E., Castellanos F.X. & Milham M.P. 009). The resting brain: unconstrained yet reliable. Cerebral Cortex, 1910),

16 [18] Shrout P.E. & Fleiss J.L. 1979). Intraclass Correlations: Uses in Assessing Rater Reliability. Psychological Bulletin, 86), [19] Weissenbacher A., Kasess C., Gerstl F., Lanzenberger R., Moser E. & Windischberger C. 009). Correlations and anticorrelations in resting-state functional connectivity MRI: A quantitative comparison of preprocessing strategies. NeuroImage, 474), [0] Weisstein E.W. n.d.). Bonferroni Correction. MathWorld A Wolfram Web Resource. Retrieved September 9, 01, from 15

Statistical Analysis Aspects of Resting State Functional Connectivity

Statistical Analysis Aspects of Resting State Functional Connectivity Statistical Analysis Aspects of Resting State Functional Connectivity Biswal s result (1995) Correlations between RS Fluctuations of left and right motor areas Why studying resting state? Human Brain =

More information

SUPPLEMENTARY APPENDICES FOR WAVELET-DOMAIN REGRESSION AND PREDICTIVE INFERENCE IN PSYCHIATRIC NEUROIMAGING

SUPPLEMENTARY APPENDICES FOR WAVELET-DOMAIN REGRESSION AND PREDICTIVE INFERENCE IN PSYCHIATRIC NEUROIMAGING Submitted to the Annals of Applied Statistics SUPPLEMENTARY APPENDICES FOR WAVELET-DOMAIN REGRESSION AND PREDICTIVE INFERENCE IN PSYCHIATRIC NEUROIMAGING By Philip T. Reiss, Lan Huo, Yihong Zhao, Clare

More information

Functional Connectivity and Network Methods

Functional Connectivity and Network Methods 18/Sep/2013" Functional Connectivity and Network Methods with functional magnetic resonance imaging" Enrico Glerean (MSc), Brain & Mind Lab, BECS, Aalto University" www.glerean.com @eglerean becs.aalto.fi/bml

More information

FMRI Neurologic Synchrony Measures for Alzheimer s Patients With Monte Carlo Critical Values

FMRI Neurologic Synchrony Measures for Alzheimer s Patients With Monte Carlo Critical Values FMRI Neurologic Synchrony Measures for Alzheimer s Patients With Monte Carlo Critical Values Daniel B. Rowe Division of Biostatistics Medical College of Wisconsin Technical Report 41 January 2003 Division

More information

Why n How: Func.onal connec.vity MRI

Why n How: Func.onal connec.vity MRI Mar.nos Center for Biomedical Imaging, Febr 21, 2013 Why n How: Func.onal connec.vity MRI Koene Van Dijk Why How Percent signal modula.on 40 30 20 10 0-10 - 20-30 - 40 0 5 10 15 20 25 30 35 40 45 50 55

More information

Inter-Rater Agreement

Inter-Rater Agreement Engineering Statistics (EGC 630) Dec., 008 http://core.ecu.edu/psyc/wuenschk/spss.htm Degree of agreement/disagreement among raters Inter-Rater Agreement Psychologists commonly measure various characteristics

More information

Introduction to General Linear Models

Introduction to General Linear Models Introduction to General Linear Models Moo K. Chung University of Wisconsin-Madison mkchung@wisc.edu September 27, 2014 In this chapter, we introduce general linear models (GLM) that have been widely used

More information

. Example: For 3 factors, sse = (y ijkt. " y ijk

. Example: For 3 factors, sse = (y ijkt.  y ijk ANALYSIS OF BALANCED FACTORIAL DESIGNS Estimates of model parameters and contrasts can be obtained by the method of Least Squares. Additional constraints must be added to estimate non-estimable parameters.

More information

A. Motivation To motivate the analysis of variance framework, we consider the following example.

A. Motivation To motivate the analysis of variance framework, we consider the following example. 9.07 ntroduction to Statistics for Brain and Cognitive Sciences Emery N. Brown Lecture 14: Analysis of Variance. Objectives Understand analysis of variance as a special case of the linear model. Understand

More information

Optimization of Designs for fmri

Optimization of Designs for fmri Optimization of Designs for fmri UCLA Advanced Neuroimaging Summer School August 2, 2007 Thomas Liu, Ph.D. UCSD Center for Functional MRI Why optimize? Scans are expensive. Subjects can be difficult to

More information

NVLAP Proficiency Test Round 14 Results. Rolf Bergman CORM 16 May 2016

NVLAP Proficiency Test Round 14 Results. Rolf Bergman CORM 16 May 2016 NVLAP Proficiency Test Round 14 Results Rolf Bergman CORM 16 May 2016 Outline PT 14 Structure Lamp Types Lab Participation Format for results PT 14 Analysis Average values of labs Average values of lamps

More information

The General Linear Model. Guillaume Flandin Wellcome Trust Centre for Neuroimaging University College London

The General Linear Model. Guillaume Flandin Wellcome Trust Centre for Neuroimaging University College London The General Linear Model Guillaume Flandin Wellcome Trust Centre for Neuroimaging University College London SPM Course Lausanne, April 2012 Image time-series Spatial filter Design matrix Statistical Parametric

More information

Testing for group differences in brain functional connectivity

Testing for group differences in brain functional connectivity Testing for group differences in brain functional connectivity Junghi Kim, Wei Pan, for ADNI Division of Biostatistics, School of Public Health, University of Minnesota, Minneapolis, MN 55455 Banff Feb

More information

Recall the Basics of Hypothesis Testing

Recall the Basics of Hypothesis Testing Recall the Basics of Hypothesis Testing The level of significance α, (size of test) is defined as the probability of X falling in w (rejecting H 0 ) when H 0 is true: P(X w H 0 ) = α. H 0 TRUE H 1 TRUE

More information

Contents. Introduction The General Linear Model. General Linear Linear Model Model. The General Linear Model, Part I. «Take home» message

Contents. Introduction The General Linear Model. General Linear Linear Model Model. The General Linear Model, Part I. «Take home» message DISCOS SPM course, CRC, Liège, 2009 Contents The General Linear Model, Part I Introduction The General Linear Model Data & model Design matrix Parameter estimates & interpretation Simple contrast «Take

More information

Analysis of variance, multivariate (MANOVA)

Analysis of variance, multivariate (MANOVA) Analysis of variance, multivariate (MANOVA) Abstract: A designed experiment is set up in which the system studied is under the control of an investigator. The individuals, the treatments, the variables

More information

Multivariate Regression Generalized Likelihood Ratio Tests for FMRI Activation

Multivariate Regression Generalized Likelihood Ratio Tests for FMRI Activation Multivariate Regression Generalized Likelihood Ratio Tests for FMRI Activation Daniel B Rowe Division of Biostatistics Medical College of Wisconsin Technical Report 40 November 00 Division of Biostatistics

More information

Signal Processing for Functional Brain Imaging: General Linear Model (2)

Signal Processing for Functional Brain Imaging: General Linear Model (2) Signal Processing for Functional Brain Imaging: General Linear Model (2) Maria Giulia Preti, Dimitri Van De Ville Medical Image Processing Lab, EPFL/UniGE http://miplab.epfl.ch/teaching/micro-513/ March

More information

Longitudinal growth analysis of early childhood brain using deformation based morphometry

Longitudinal growth analysis of early childhood brain using deformation based morphometry Longitudinal growth analysis of early childhood brain using deformation based morphometry Junki Lee 1, Yasser Ad-Dab'bagh 2, Vladimir Fonov 1, Alan C. Evans 1 and the Brain Development Cooperative Group

More information

Network Modeling and Functional Data Methods for Brain Functional Connectivity Studies. Kehui Chen

Network Modeling and Functional Data Methods for Brain Functional Connectivity Studies. Kehui Chen Network Modeling and Functional Data Methods for Brain Functional Connectivity Studies Kehui Chen Department of Statistics, University of Pittsburgh Nonparametric Statistics Workshop, Ann Arbor, Oct 06,

More information

Modelling temporal structure (in noise and signal)

Modelling temporal structure (in noise and signal) Modelling temporal structure (in noise and signal) Mark Woolrich, Christian Beckmann*, Salima Makni & Steve Smith FMRIB, Oxford *Imperial/FMRIB temporal noise: modelling temporal autocorrelation temporal

More information

Title. Description. Quick start. Menu. stata.com. icc Intraclass correlation coefficients

Title. Description. Quick start. Menu. stata.com. icc Intraclass correlation coefficients Title stata.com icc Intraclass correlation coefficients Description Menu Options for one-way RE model Remarks and examples Methods and formulas Also see Quick start Syntax Options for two-way RE and ME

More information

Multilevel Modeling: A Second Course

Multilevel Modeling: A Second Course Multilevel Modeling: A Second Course Kristopher Preacher, Ph.D. Upcoming Seminar: February 2-3, 2017, Ft. Myers, Florida What this workshop will accomplish I will review the basics of multilevel modeling

More information

Textbook Examples of. SPSS Procedure

Textbook Examples of. SPSS Procedure Textbook s of IBM SPSS Procedures Each SPSS procedure listed below has its own section in the textbook. These sections include a purpose statement that describes the statistical test, identification of

More information

Overview of SPM. Overview. Making the group inferences we want. Non-sphericity Beyond Ordinary Least Squares. Model estimation A word on power

Overview of SPM. Overview. Making the group inferences we want. Non-sphericity Beyond Ordinary Least Squares. Model estimation A word on power Group Inference, Non-sphericity & Covariance Components in SPM Alexa Morcom Edinburgh SPM course, April 011 Centre for Cognitive & Neural Systems/ Department of Psychology University of Edinburgh Overview

More information

" M A #M B. Standard deviation of the population (Greek lowercase letter sigma) σ 2

 M A #M B. Standard deviation of the population (Greek lowercase letter sigma) σ 2 Notation and Equations for Final Exam Symbol Definition X The variable we measure in a scientific study n The size of the sample N The size of the population M The mean of the sample µ The mean of the

More information

BMI/STAT 768: Lecture 04 Correlations in Metric Spaces

BMI/STAT 768: Lecture 04 Correlations in Metric Spaces BMI/STAT 768: Lecture 04 Correlations in Metric Spaces Moo K. Chung mkchung@wisc.edu February 1, 2018 The elementary statistical treatment on correlations can be found in [4]: http://www.stat.wisc.edu/

More information

I i=1 1 I(J 1) j=1 (Y ij Ȳi ) 2. j=1 (Y j Ȳ )2 ] = 2n( is the two-sample t-test statistic.

I i=1 1 I(J 1) j=1 (Y ij Ȳi ) 2. j=1 (Y j Ȳ )2 ] = 2n( is the two-sample t-test statistic. Serik Sagitov, Chalmers and GU, February, 08 Solutions chapter Matlab commands: x = data matrix boxplot(x) anova(x) anova(x) Problem.3 Consider one-way ANOVA test statistic For I = and = n, put F = MS

More information

RESTING STATE FMRI FUNCTIONAL CONNECTIVITY ANALYSIS USING SOFT COMPETITIVE LEARNING ALGORITHMS

RESTING STATE FMRI FUNCTIONAL CONNECTIVITY ANALYSIS USING SOFT COMPETITIVE LEARNING ALGORITHMS 15 th International Symposium on Computer Methods in Biomechanics and Biomedical Engineering and 3 rd Conference on Imaging and Visualization CMBBE 2018 P. R. Fernandes and J. M. Tavares (Editors) RESTING

More information

RS-fMRI analysis in healthy subjects confirms gender based differences

RS-fMRI analysis in healthy subjects confirms gender based differences RS-fMRI analysis in healthy subjects confirms gender based differences Alberto A. Vergani (aavergani@uninsubria.it) PhD student in Computer Science and Computational Mathematics University of Insubria

More information

176 5 t h Fl oo r. 337 P o ly me r Ma te ri al s

176 5 t h Fl oo r. 337 P o ly me r Ma te ri al s A g la di ou s F. L. 462 E l ec tr on ic D ev el op me nt A i ng er A.W.S. 371 C. A. M. A l ex an de r 236 A d mi ni st ra ti on R. H. (M rs ) A n dr ew s P. V. 326 O p ti ca l Tr an sm is si on A p ps

More information

[4+3+3] Q 1. (a) Describe the normal regression model through origin. Show that the least square estimator of the regression parameter is given by

[4+3+3] Q 1. (a) Describe the normal regression model through origin. Show that the least square estimator of the regression parameter is given by Concordia University Department of Mathematics and Statistics Course Number Section Statistics 360/1 40 Examination Date Time Pages Final June 2004 3 hours 7 Instructors Course Examiner Marks Y.P. Chaubey

More information

Linear Algebra Review

Linear Algebra Review Linear Algebra Review Yang Feng http://www.stat.columbia.edu/~yangfeng Yang Feng (Columbia University) Linear Algebra Review 1 / 45 Definition of Matrix Rectangular array of elements arranged in rows and

More information

Neuroscience Introduction

Neuroscience Introduction Neuroscience Introduction The brain As humans, we can identify galaxies light years away, we can study particles smaller than an atom. But we still haven t unlocked the mystery of the three pounds of matter

More information

Confidence Intervals, Testing and ANOVA Summary

Confidence Intervals, Testing and ANOVA Summary Confidence Intervals, Testing and ANOVA Summary 1 One Sample Tests 1.1 One Sample z test: Mean (σ known) Let X 1,, X n a r.s. from N(µ, σ) or n > 30. Let The test statistic is H 0 : µ = µ 0. z = x µ 0

More information

HST 583 FUNCTIONAL MAGNETIC RESONANCE IMAGING DATA ANALYSIS AND ACQUISITION A REVIEW OF STATISTICS FOR FMRI DATA ANALYSIS

HST 583 FUNCTIONAL MAGNETIC RESONANCE IMAGING DATA ANALYSIS AND ACQUISITION A REVIEW OF STATISTICS FOR FMRI DATA ANALYSIS HST 583 FUNCTIONAL MAGNETIC RESONANCE IMAGING DATA ANALYSIS AND ACQUISITION A REVIEW OF STATISTICS FOR FMRI DATA ANALYSIS EMERY N. BROWN AND CHRIS LONG NEUROSCIENCE STATISTICS RESEARCH LABORATORY DEPARTMENT

More information

Neuroimage Processing

Neuroimage Processing Neuroimage Processing Instructor: Moo K. Chung mkchung@wisc.edu Lecture 2. General Linear Models (GLM) Multivariate General Linear Models (MGLM) September 11, 2009 Research Projects If you have your own

More information

Taguchi Method and Robust Design: Tutorial and Guideline

Taguchi Method and Robust Design: Tutorial and Guideline Taguchi Method and Robust Design: Tutorial and Guideline CONTENT 1. Introduction 2. Microsoft Excel: graphing 3. Microsoft Excel: Regression 4. Microsoft Excel: Variance analysis 5. Robust Design: An Example

More information

Chapter 1: Linear Regression with One Predictor Variable also known as: Simple Linear Regression Bivariate Linear Regression

Chapter 1: Linear Regression with One Predictor Variable also known as: Simple Linear Regression Bivariate Linear Regression BSTT523: Kutner et al., Chapter 1 1 Chapter 1: Linear Regression with One Predictor Variable also known as: Simple Linear Regression Bivariate Linear Regression Introduction: Functional relation between

More information

Chapter 30 Design and Analysis of

Chapter 30 Design and Analysis of Chapter 30 Design and Analysis of 2 k DOEs Introduction This chapter describes design alternatives and analysis techniques for conducting a DOE. Tables M1 to M5 in Appendix E can be used to create test

More information

The ASL signal. Parenchy mal signal. Venous signal. Arterial signal. Input Function (Label) Dispersion: (t e -kt ) Relaxation: (e -t/t1a )

The ASL signal. Parenchy mal signal. Venous signal. Arterial signal. Input Function (Label) Dispersion: (t e -kt ) Relaxation: (e -t/t1a ) Lecture Goals Other non-bold techniques (T2 weighted, Mn contrast agents, SSFP, Dynamic Diffusion, ASL) Understand Basic Principles in Spin labeling : spin inversion, flow vs. perfusion ASL variations

More information

MATH Notebook 3 Spring 2018

MATH Notebook 3 Spring 2018 MATH448001 Notebook 3 Spring 2018 prepared by Professor Jenny Baglivo c Copyright 2010 2018 by Jenny A. Baglivo. All Rights Reserved. 3 MATH448001 Notebook 3 3 3.1 One Way Layout........................................

More information

Unit 14: Nonparametric Statistical Methods

Unit 14: Nonparametric Statistical Methods Unit 14: Nonparametric Statistical Methods Statistics 571: Statistical Methods Ramón V. León 8/8/2003 Unit 14 - Stat 571 - Ramón V. León 1 Introductory Remarks Most methods studied so far have been based

More information

EL-GY 6813/BE-GY 6203 Medical Imaging, Fall 2016 Final Exam

EL-GY 6813/BE-GY 6203 Medical Imaging, Fall 2016 Final Exam EL-GY 6813/BE-GY 6203 Medical Imaging, Fall 2016 Final Exam (closed book, 1 sheets of notes double sided allowed, no calculator or other electronic devices allowed) 1. Ultrasound Physics (15 pt) A) (9

More information

Computing FMRI Activations: Coefficients and t-statistics by Detrending and Multiple Regression

Computing FMRI Activations: Coefficients and t-statistics by Detrending and Multiple Regression Computing FMRI Activations: Coefficients and t-statistics by Detrending and Multiple Regression Daniel B. Rowe and Steven W. Morgan Division of Biostatistics Medical College of Wisconsin Technical Report

More information

DATA IN SERIES AND TIME I. Several different techniques depending on data and what one wants to do

DATA IN SERIES AND TIME I. Several different techniques depending on data and what one wants to do DATA IN SERIES AND TIME I Several different techniques depending on data and what one wants to do Data can be a series of events scaled to time or not scaled to time (scaled to space or just occurrence)

More information

IX. Complete Block Designs (CBD s)

IX. Complete Block Designs (CBD s) IX. Complete Block Designs (CBD s) A.Background Noise Factors nuisance factors whose values can be controlled within the context of the experiment but not outside the context of the experiment Covariates

More information

The General Linear Model. Monday, Lecture 2 Jeanette Mumford University of Wisconsin - Madison

The General Linear Model. Monday, Lecture 2 Jeanette Mumford University of Wisconsin - Madison The General Linear Model Monday, Lecture 2 Jeanette Mumford University of Wisconsin - Madison How we re approaching the GLM Regression for behavioral data Without using matrices Understand least squares

More information

Statistical Analysis of fmrl Data

Statistical Analysis of fmrl Data Statistical Analysis of fmrl Data F. Gregory Ashby The MIT Press Cambridge, Massachusetts London, England Preface xi Acronyms xv 1 Introduction 1 What Is fmri? 2 The Scanning Session 4 Experimental Design

More information

Structural Equation Modeling and Confirmatory Factor Analysis. Types of Variables

Structural Equation Modeling and Confirmatory Factor Analysis. Types of Variables /4/04 Structural Equation Modeling and Confirmatory Factor Analysis Advanced Statistics for Researchers Session 3 Dr. Chris Rakes Website: http://csrakes.yolasite.com Email: Rakes@umbc.edu Twitter: @RakesChris

More information

STAT 512 MidTerm I (2/21/2013) Spring 2013 INSTRUCTIONS

STAT 512 MidTerm I (2/21/2013) Spring 2013 INSTRUCTIONS STAT 512 MidTerm I (2/21/2013) Spring 2013 Name: Key INSTRUCTIONS 1. This exam is open book/open notes. All papers (but no electronic devices except for calculators) are allowed. 2. There are 5 pages in

More information

The General Linear Model. How we re approaching the GLM. What you ll get out of this 8/11/16

The General Linear Model. How we re approaching the GLM. What you ll get out of this 8/11/16 8// The General Linear Model Monday, Lecture Jeanette Mumford University of Wisconsin - Madison How we re approaching the GLM Regression for behavioral data Without using matrices Understand least squares

More information

Group comparison test for independent samples

Group comparison test for independent samples Group comparison test for independent samples The purpose of the Analysis of Variance (ANOVA) is to test for significant differences between means. Supposing that: samples come from normal populations

More information

Contrast Mechanisms in MRI. Michael Jay Schillaci

Contrast Mechanisms in MRI. Michael Jay Schillaci Contrast Mechanisms in MRI Michael Jay Schillaci Overview Image Acquisition Basic Pulse Sequences Unwrapping K-Space Image Optimization Contrast Mechanisms Static and Motion Contrasts T1 & T2 Weighting,

More information

CIND Pre-Processing Pipeline For Diffusion Tensor Imaging. Overview

CIND Pre-Processing Pipeline For Diffusion Tensor Imaging. Overview CIND Pre-Processing Pipeline For Diffusion Tensor Imaging Overview The preprocessing pipeline of the Center for Imaging of Neurodegenerative Diseases (CIND) prepares diffusion weighted images (DWI) and

More information

Lecture 14: ANOVA and the F-test

Lecture 14: ANOVA and the F-test Lecture 14: ANOVA and the F-test S. Massa, Department of Statistics, University of Oxford 3 February 2016 Example Consider a study of 983 individuals and examine the relationship between duration of breastfeeding

More information

Simulating Uniform- and Triangular- Based Double Power Method Distributions

Simulating Uniform- and Triangular- Based Double Power Method Distributions Journal of Statistical and Econometric Methods, vol.6, no.1, 2017, 1-44 ISSN: 1792-6602 (print), 1792-6939 (online) Scienpress Ltd, 2017 Simulating Uniform- and Triangular- Based Double Power Method Distributions

More information

ClasSi: Measuring Ranking Quality in the Presence of Object Classes with Similarity Information

ClasSi: Measuring Ranking Quality in the Presence of Object Classes with Similarity Information ClasSi: Measuring Ranking Quality in the Presence of Object Classes with Similarity Information Anca Maria Ivanescu, Marc Wichterich, and Thomas Seidl Data Management and Data Exploration Group Informatik

More information

Appendix A. Math Reviews 03Jan2007. A.1 From Simple to Complex. Objectives. 1. Review tools that are needed for studying models for CLDVs.

Appendix A. Math Reviews 03Jan2007. A.1 From Simple to Complex. Objectives. 1. Review tools that are needed for studying models for CLDVs. Appendix A Math Reviews 03Jan007 Objectives. Review tools that are needed for studying models for CLDVs.. Get you used to the notation that will be used. Readings. Read this appendix before class.. Pay

More information

First Technical Course, European Centre for Soft Computing, Mieres, Spain. 4th July 2011

First Technical Course, European Centre for Soft Computing, Mieres, Spain. 4th July 2011 First Technical Course, European Centre for Soft Computing, Mieres, Spain. 4th July 2011 Linear Given probabilities p(a), p(b), and the joint probability p(a, B), we can write the conditional probabilities

More information

ξ t = Fξ t 1 + v t. then λ is less than unity in absolute value. In the above expression, A denotes the determinant of the matrix, A. 1 y t 1.

ξ t = Fξ t 1 + v t. then λ is less than unity in absolute value. In the above expression, A denotes the determinant of the matrix, A. 1 y t 1. Christiano FINC 520, Spring 2009 Homework 3, due Thursday, April 23. 1. In class, we discussed the p th order VAR: y t = c + φ 1 y t 1 + φ 2 y t 2 +... + φ p y t p + ε t, where ε t is a white noise with

More information

Application of Variance Homogeneity Tests Under Violation of Normality Assumption

Application of Variance Homogeneity Tests Under Violation of Normality Assumption Application of Variance Homogeneity Tests Under Violation of Normality Assumption Alisa A. Gorbunova, Boris Yu. Lemeshko Novosibirsk State Technical University Novosibirsk, Russia e-mail: gorbunova.alisa@gmail.com

More information

The General Linear Model in Functional Neuroimaging

The General Linear Model in Functional Neuroimaging The General Linear Model in Functional Neuroimaging Finn Årup Nielsen Neurobiology Research Unit, Rigshospitalet; Informatics and Mathematical Modelling Technical University of Denmark September 8, 2004

More information

http://www.statsoft.it/out.php?loc=http://www.statsoft.com/textbook/ Group comparison test for independent samples The purpose of the Analysis of Variance (ANOVA) is to test for significant differences

More information

Glossary. The ISI glossary of statistical terms provides definitions in a number of different languages:

Glossary. The ISI glossary of statistical terms provides definitions in a number of different languages: Glossary The ISI glossary of statistical terms provides definitions in a number of different languages: http://isi.cbs.nl/glossary/index.htm Adjusted r 2 Adjusted R squared measures the proportion of the

More information

The General Linear Model (GLM)

The General Linear Model (GLM) he General Linear Model (GLM) Klaas Enno Stephan ranslational Neuromodeling Unit (NU) Institute for Biomedical Engineering University of Zurich & EH Zurich Wellcome rust Centre for Neuroimaging Institute

More information

1 Overview. 2 Multiple Regression framework. Effect Coding. Hervé Abdi

1 Overview. 2 Multiple Regression framework. Effect Coding. Hervé Abdi In Neil Salkind (Ed.), Encyclopedia of Research Design. Thousand Oaks, CA: Sage. 2010 Effect Coding Hervé Abdi 1 Overview Effect coding is a coding scheme used when an analysis of variance (anova) is performed

More information

Table 1: Fish Biomass data set on 26 streams

Table 1: Fish Biomass data set on 26 streams Math 221: Multiple Regression S. K. Hyde Chapter 27 (Moore, 5th Ed.) The following data set contains observations on the fish biomass of 26 streams. The potential regressors from which we wish to explain

More information

The Standard Linear Model: Hypothesis Testing

The Standard Linear Model: Hypothesis Testing Department of Mathematics Ma 3/103 KC Border Introduction to Probability and Statistics Winter 2017 Lecture 25: The Standard Linear Model: Hypothesis Testing Relevant textbook passages: Larsen Marx [4]:

More information

A UNIFIED APPROACH FOR ASSESSING AGREEMENT FOR CONTINUOUS AND CATEGORICAL DATA

A UNIFIED APPROACH FOR ASSESSING AGREEMENT FOR CONTINUOUS AND CATEGORICAL DATA Journal of Biopharmaceutical Statistics, 17: 69 65, 007 Copyright Taylor & Francis Group, LLC ISSN: 1054-3406 print/150-5711 online DOI: 10.1080/10543400701376498 A UNIFIED APPROACH FOR ASSESSING AGREEMENT

More information

An unbiased estimator for the roughness of a multivariate Gaussian random field

An unbiased estimator for the roughness of a multivariate Gaussian random field An unbiased estimator for the roughness of a multivariate Gaussian random field K.J. Worsley July 28, 2000 Abstract Images from positron emission tomography (PET) and functional magnetic resonance imaging

More information

Correlation and regression

Correlation and regression 1 Correlation and regression Yongjua Laosiritaworn Introductory on Field Epidemiology 6 July 2015, Thailand Data 2 Illustrative data (Doll, 1955) 3 Scatter plot 4 Doll, 1955 5 6 Correlation coefficient,

More information

Neuroimage Processing

Neuroimage Processing Neuroimage Processing Instructor: Moo K. Chung mkchung@wisc.edu Lecture 10-11. Deformation-based morphometry (DBM) Tensor-based morphometry (TBM) November 13, 2009 Image Registration Process of transforming

More information

Lecture 6: Single-classification multivariate ANOVA (k-group( MANOVA)

Lecture 6: Single-classification multivariate ANOVA (k-group( MANOVA) Lecture 6: Single-classification multivariate ANOVA (k-group( MANOVA) Rationale and MANOVA test statistics underlying principles MANOVA assumptions Univariate ANOVA Planned and unplanned Multivariate ANOVA

More information

DESAIN EKSPERIMEN Analysis of Variances (ANOVA) Semester Genap 2017/2018 Jurusan Teknik Industri Universitas Brawijaya

DESAIN EKSPERIMEN Analysis of Variances (ANOVA) Semester Genap 2017/2018 Jurusan Teknik Industri Universitas Brawijaya DESAIN EKSPERIMEN Analysis of Variances (ANOVA) Semester Jurusan Teknik Industri Universitas Brawijaya Outline Introduction The Analysis of Variance Models for the Data Post-ANOVA Comparison of Means Sample

More information

Neuroimaging for Machine Learners Validation and inference

Neuroimaging for Machine Learners Validation and inference GIGA in silico medicine, ULg, Belgium http://www.giga.ulg.ac.be Neuroimaging for Machine Learners Validation and inference Christophe Phillips, Ir. PhD. PRoNTo course June 2017 Univariate analysis: Introduction:

More information

Granger Mediation Analysis of Functional Magnetic Resonance Imaging Time Series

Granger Mediation Analysis of Functional Magnetic Resonance Imaging Time Series Granger Mediation Analysis of Functional Magnetic Resonance Imaging Time Series Yi Zhao and Xi Luo Department of Biostatistics Brown University June 8, 2017 Overview 1 Introduction 2 Model and Method 3

More information

Summary of Chapter 7 (Sections ) and Chapter 8 (Section 8.1)

Summary of Chapter 7 (Sections ) and Chapter 8 (Section 8.1) Summary of Chapter 7 (Sections 7.2-7.5) and Chapter 8 (Section 8.1) Chapter 7. Tests of Statistical Hypotheses 7.2. Tests about One Mean (1) Test about One Mean Case 1: σ is known. Assume that X N(µ, σ

More information

My data doesn t look like that..

My data doesn t look like that.. Testing assumptions My data doesn t look like that.. We have made a big deal about testing model assumptions each week. Bill Pine Testing assumptions Testing assumptions We have made a big deal about testing

More information

UNIVERSITY OF TORONTO. Faculty of Arts and Science APRIL 2010 EXAMINATIONS STA 303 H1S / STA 1002 HS. Duration - 3 hours. Aids Allowed: Calculator

UNIVERSITY OF TORONTO. Faculty of Arts and Science APRIL 2010 EXAMINATIONS STA 303 H1S / STA 1002 HS. Duration - 3 hours. Aids Allowed: Calculator UNIVERSITY OF TORONTO Faculty of Arts and Science APRIL 2010 EXAMINATIONS STA 303 H1S / STA 1002 HS Duration - 3 hours Aids Allowed: Calculator LAST NAME: FIRST NAME: STUDENT NUMBER: There are 27 pages

More information

TABLES AND FORMULAS FOR MOORE Basic Practice of Statistics

TABLES AND FORMULAS FOR MOORE Basic Practice of Statistics TABLES AND FORMULAS FOR MOORE Basic Practice of Statistics Exploring Data: Distributions Look for overall pattern (shape, center, spread) and deviations (outliers). Mean (use a calculator): x = x 1 + x

More information

Chapter 7: Hypothesis testing

Chapter 7: Hypothesis testing Chapter 7: Hypothesis testing Hypothesis testing is typically done based on the cumulative hazard function. Here we ll use the Nelson-Aalen estimate of the cumulative hazard. The survival function is used

More information

Introduction to MRI Acquisition

Introduction to MRI Acquisition Introduction to MRI Acquisition James Meakin FMRIB Physics Group FSL Course, Bristol, September 2012 1 What are we trying to achieve? 2 What are we trying to achieve? Informed decision making: Protocols

More information

Dynamic Causal Modelling for fmri

Dynamic Causal Modelling for fmri Dynamic Causal Modelling for fmri André Marreiros Friday 22 nd Oct. 2 SPM fmri course Wellcome Trust Centre for Neuroimaging London Overview Brain connectivity: types & definitions Anatomical connectivity

More information

i;\-'i frz q > R>? >tr E*+ [S I z> N g> F 'x sa :r> >,9 T F >= = = I Y E H H>tr iir- g-i I * s I!,i --' - = a trx - H tnz rqx o >.F g< s Ire tr () -s

i;\-'i frz q > R>? >tr E*+ [S I z> N g> F 'x sa :r> >,9 T F >= = = I Y E H H>tr iir- g-i I * s I!,i --' - = a trx - H tnz rqx o >.F g< s Ire tr () -s 5 C /? >9 T > ; '. ; J ' ' J. \ ;\' \.> ). L; c\ u ( (J ) \ 1 ) : C ) (... >\ > 9 e!) T C). '1!\ /_ \ '\ ' > 9 C > 9.' \( T Z > 9 > 5 P + 9 9 ) :> : + (. \ z : ) z cf C : u 9 ( :!z! Z c (! $ f 1 :.1 f.

More information

TARGET DETECTION WITH FUNCTION OF COVARIANCE MATRICES UNDER CLUTTER ENVIRONMENT

TARGET DETECTION WITH FUNCTION OF COVARIANCE MATRICES UNDER CLUTTER ENVIRONMENT TARGET DETECTION WITH FUNCTION OF COVARIANCE MATRICES UNDER CLUTTER ENVIRONMENT Feng Lin, Robert C. Qiu, James P. Browning, Michael C. Wicks Cognitive Radio Institute, Department of Electrical and Computer

More information

Analysis of Variance. ภาว น ศ ร ประภาน ก ล คณะเศรษฐศาสตร มหาว ทยาล ยธรรมศาสตร

Analysis of Variance. ภาว น ศ ร ประภาน ก ล คณะเศรษฐศาสตร มหาว ทยาล ยธรรมศาสตร Analysis of Variance ภาว น ศ ร ประภาน ก ล คณะเศรษฐศาสตร มหาว ทยาล ยธรรมศาสตร pawin@econ.tu.ac.th Outline Introduction One Factor Analysis of Variance Two Factor Analysis of Variance ANCOVA MANOVA Introduction

More information

Formal Statement of Simple Linear Regression Model

Formal Statement of Simple Linear Regression Model Formal Statement of Simple Linear Regression Model Y i = β 0 + β 1 X i + ɛ i Y i value of the response variable in the i th trial β 0 and β 1 are parameters X i is a known constant, the value of the predictor

More information

sociology 362 regression

sociology 362 regression sociology 36 regression Regression is a means of studying how the conditional distribution of a response variable (say, Y) varies for different values of one or more independent explanatory variables (say,

More information

Ch 2: Simple Linear Regression

Ch 2: Simple Linear Regression Ch 2: Simple Linear Regression 1. Simple Linear Regression Model A simple regression model with a single regressor x is y = β 0 + β 1 x + ɛ, where we assume that the error ɛ is independent random component

More information

Network Reconstruction from Intrinsic Noise: Non-Minimum-Phase Systems

Network Reconstruction from Intrinsic Noise: Non-Minimum-Phase Systems Preprints of the 19th World Congress he International Federation of Automatic Control Network Reconstruction from Intrinsic Noise: Non-Minimum-Phase Systems David Hayden, Ye Yuan Jorge Goncalves Department

More information

Using SPSS for One Way Analysis of Variance

Using SPSS for One Way Analysis of Variance Using SPSS for One Way Analysis of Variance This tutorial will show you how to use SPSS version 12 to perform a one-way, between- subjects analysis of variance and related post-hoc tests. This tutorial

More information

Lecture 2: Linear Models. Bruce Walsh lecture notes Seattle SISG -Mixed Model Course version 23 June 2011

Lecture 2: Linear Models. Bruce Walsh lecture notes Seattle SISG -Mixed Model Course version 23 June 2011 Lecture 2: Linear Models Bruce Walsh lecture notes Seattle SISG -Mixed Model Course version 23 June 2011 1 Quick Review of the Major Points The general linear model can be written as y = X! + e y = vector

More information

Chapter 15: Analysis of Variance

Chapter 15: Analysis of Variance Chapter 5: Analysis of Variance 5. Introduction In this chapter, we introduced the analysis of variance technique, which deals with problems whose objective is to compare two or more populations of quantitative

More information

AN EVALUATION OF PARAMETRIC AND NONPARAMETRIC VARIANCE ESTIMATORS IN COMPLETELY RANDOMIZED EXPERIMENTS. Stanley A. Lubanski. and. Peter M.

AN EVALUATION OF PARAMETRIC AND NONPARAMETRIC VARIANCE ESTIMATORS IN COMPLETELY RANDOMIZED EXPERIMENTS. Stanley A. Lubanski. and. Peter M. AN EVALUATION OF PARAMETRIC AND NONPARAMETRIC VARIANCE ESTIMATORS IN COMPLETELY RANDOMIZED EXPERIMENTS by Stanley A. Lubanski and Peter M. Steiner UNIVERSITY OF WISCONSIN-MADISON 018 Background To make

More information

Chapter 12. Analysis of variance

Chapter 12. Analysis of variance Serik Sagitov, Chalmers and GU, January 9, 016 Chapter 1. Analysis of variance Chapter 11: I = samples independent samples paired samples Chapter 1: I 3 samples of equal size J one-way layout two-way layout

More information

Topological Data Analysis for Brain Networks

Topological Data Analysis for Brain Networks Topological Data Analysis for Brain Networks Relating Functional Brain Network Topology to Clinical Measures of Behavior Bei Wang Phillips 1,2 University of Utah Joint work with Eleanor Wong 1,2, Sourabh

More information

ECON 5350 Class Notes Functional Form and Structural Change

ECON 5350 Class Notes Functional Form and Structural Change ECON 5350 Class Notes Functional Form and Structural Change 1 Introduction Although OLS is considered a linear estimator, it does not mean that the relationship between Y and X needs to be linear. In this

More information

Package agree. R topics documented: July 7, Title Various Methods for Measuring Agreement Version Author Dai Feng

Package agree. R topics documented: July 7, Title Various Methods for Measuring Agreement Version Author Dai Feng Title Various Methods for Measuring Agreement Version 0.5-0 Author Dai Feng Package agree July 7, 2016 Bland-Altman plot and scatter plot with identity line for visualization and point and interval estimates

More information

Species associations

Species associations Species associations Pierre Legendre 1 and F. Guillaume Blanchet 2 1 Département de sciences biologiques, Université de Montréal 2 Department of Renewable Resources, University of Alberta Introduction

More information