Hi so I notice something interesting.
data <- voom(x, plot=T, design = design2)
vfit <- lmFit(data)
vfit <- eBayes(vfit)
topTable(vfit,coef=2,sort.by="P")
vfit <- lmFit(data$E, design = design2)
vfit <- eBayes(vfit)
topTable(vfit,coef=2,sort.by="P")
The two results above gives slightly different p value - very slightly but enough that the top10 from topTable gets shuffle a bit. Does anyone know why that is the case? thanks!
@thokall oh yes that right. I read it more carefully now whereby I thought previously that the E value were not only normalized but weighted as well, my bad, thanks!