How to assess the Fold-change significance using a t-test in R?
1
0
Entering edit mode
5.9 years ago
lmy941003 • 0

Hello,everyone!

I want to assess the significance of Fold-change using t-test. Normally, if I know the data of case and control, I can perform the t-test, but the problem is that I only have the log2 fold change ,so I don't know how to performing the t-test only by calculated values of fold-change. Is it possible?

I am new to this field, please help. Thank you very much!

R Fold-change t-test • 4.9k views
ADD COMMENT
1
Entering edit mode

Do you have the SE of the fold-change? You can't calculate the p-value from only a fold-change, you'll need some other value to let you know how confident that estimate is.

ADD REPLY
0
Entering edit mode

To the best of my knowledge, this is not possible with just the fold change.

ADD REPLY
2
Entering edit mode
5.9 years ago

Granted that with just one data-point you can't do much without making further assumptions. It seems to me that you want to know how extreme your log-fold change is. For this, you could make a guess, more or less driven by data you have, about the distribution of log-fold changes from which your data-point comes from. Then, you can ask where your log-fold-change maps on this distribution. For example, if you assume the distribution is normally distributed with mean 0 and standard deviation 2, then (in R) pnorm(q, mean= 0, sd= 2) tells you how extreme your data point q is. For example:

pnorm(q= 2.5, mean= 0, sd= 2) # 0.89, not very close to 0 or 1, not very extreme
pnorm(q= 5, mean= 0, sd= 2) # 0.99, quite extreme
pnorm(q= 5, mean= 0, sd= 5) # 0.84, not very extreme anymore
ADD COMMENT

Login before adding your answer.

Traffic: 1662 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6