T value of a single subject

1 min read

I usually report a group-level T-test image in the final publications or presentations. But in the early stage of a project when only one or a few subjects have been scanned, I often need to report an activation map for an individual subject after general linear model analysis (GLM). I could show a beta image or activation image, but a T-image is sometimes desired. The question is how do I calculate the T-value of a contrast for a single subject.

I will use the following example to show how it is calculated. Assume we have two conditions, beep and flash, and the brain signal is saved in y. Based on the timing of beep and flash, we have an independent variable called x with two columns. The 1st column is for beep, the 2nd for flash.

x=rand(10,2);
y=x(:,1)*2 + x(:,2)*3 + 0.2 + rand(size(x(:,1)))/5;
[a,b,c] = glmfit(x,y);

Now you can easily find the beta value, the T value, and the p-value of each individual condition:

beta = a(2:end)'
T = c.t(2:end)'
p = c.p(2:end)'

What about the contrast between beep and flash? Well, it’s a bit more complicated. First, we need to find the covariance matrix of the betas.

covb = c.covb(2:end, 2:end);

Then we define our contrast vector, in this case it is simply contrast = [1 -1]. The variance of contrast (beep-flash) is

V = contrast  * covb * contrast';

The T-value of the contrast is

T = (beta * contrast') / sqrt(V) * sqrt(length(x)); 

Note: you might be tempted to use the two-sample T formula to calculate the T-value (i.e. finding the variance of beta1, variance of beta2, and then calculate). It is not the correct way. We have to consider the case where the two conditions are correlated. Using the covariance matrix above is the right way.



写作助手,把中式英语变成专业英文


Want to receive new post notification? 有新文章通知我

第五十八期fNIRS Journal Club通知2024/12/07, 10am 王硕教授团队

理解噪音中的言语对老年听力损失患者来说是一个重大挑战。来自首都医科大学附属北京同仁医院耳鼻咽喉科研究所王硕教授团队的助理研究员王松建将为大家介绍他们采用同步EEG-fNIRS技术,从神经与血流动力学两
Wanling Zhu
10 sec read

第五十七期fNIRS Journal Club视频 王欣悦博士

Youtube: https://youtu.be/vyo-kECC2Ps 优酷:https://v.youku.com/v_show/id_XNjQzNTA0ODIwMA==.html 肢体语言——
Wanling Zhu
20 sec read

第五十七期fNIRS Journal Club通知2024/11/02, 10am 王欣悦博士

肢体语言——例如人际距离、眼神、手势等,如何影响我们的交流,是一个有趣的谜题。它们是优雅而神秘的代码,无本可依、无人知晓,却又无人不懂。来自南京师范大学的王欣悦博士将分享如何通过fNIRS超扫描技术,
Wanling Zhu
16 sec read

6 Replies to “T value of a single subject”

  1. Hi,Cui Xu. Whether the values of c.t are the T-values of the contrast (beep-baseline or flash-baseline) ?

  2. Sir, Thanks for your wonderful explanation on how to calculate the T-value for an individual subject. My questions is if I assume there are four conditions and I need to find the contrast between these conditions, what would be the contrast vector in this case? Is it [+1 +1 +1 -3]?

  3. Hi Profesor Xu Cui

    I have been following your blog since I began my Bachelor Thesis about fnirs and it has been very insightful to me.
    I ran finger tapping experiments using a block-design of 20 repetition with the task of 10 (s) and a rest time of 15 (s)between task.
    Every time a cue appeared on the screen the subject performed 10 s of finger tapping.

    Now, I want to apply a statistical result at subject level. I am trying to apply the GLM as you described here. However, I am struggling with 3 questions.

    – Before applying the GLM, it is better pre-processing my signal. Such as, baseline correction, downsampling, band-pass filtering to remove artifacts and lately apply MBL to obtain Hemoglobin concentration change as a time series o it is not necessary the pre-processing before the GLM?
    I asked because the papers I saw it do not clarify this point.

    -How properly design the matrix design. I defined it using the following code:

    % EXPECTED HRF
    t = 1:1:13;
    h = gampdf(t,6) + -.5*gampdf(t,10); % HRF MODEL
    h = h/max(h); % SCALE HRF TO HAVE MAX AMPLITUDE OF 1

    nTRs=7182;
    Experiment_time=0:1/9.7:(nTRs-1)/9.7;
    impulseTrain0 = zeros(length(Experiment_time),1);

    %CUE ONSET
    cue=[1270 1567 1865 2163 2461 2759 3056 3354 3652 3950 4248 4546 4843 5141 5439 5737 6035 6332 6630 6928];

    % FINGER TAPPING
    impulseTrain0(cue)=1;

    % EXPERIMENT DESIGN / STIMULUS SEQUENCE
    D = [impulseTrain0];

    % CREATE DESIGN MATRIX FOR THE THREE STIMULI
    X = conv2(D,h’); % X = D * h
    X(nTRs+1:end,:) = []; % REMOVE EXCESS FROM CONVOLUTION

    – ¿How make up a contrast vector with just one condition? As you notice, my experiment just has one condition(Tapping). so, if I want to compare the condition with the baseline in order to know if the activation is statistical significant how can create a contrast.

    Sorry if my questions were too long.

    Thanks
    Agustin

Leave a Reply

Your email address will not be published. Required fields are marked *