In a tutorial on differential expression analysis the following happened: Normalized data was converted to Z-scores and divided into two biological groups. A t-test was performed on the two groups (which is fine). Now the point of confusion. The means of the two groups were calculated separately, followed by "Z-difference=mean1 - mean2".
It was said this Z-difference signified biological difference and made the overall statistics more robust.
I understand that a Z-difference of -1 < Z-diff < 1 could indicate that two groups are closely related (e.g., low variation between groups). However, I can not find any online references about its specific use.
What is (in your opinion) the value of this Z-difference and how would it increase robustness?
Because I don't have access to raw data files DESeq2 and etc. did not seem too effective. I know I know, working in Excel is frowned upon here and it's not my preference either but hey :]
Therefore all you've done is scale the between-group difference by the standard deviation of the sample. You haven't made anything "more robust" as group test statistics -- including the T-test -- are invariant under scaling and shifting the underlying data.*
However, changes scaled in this way have units "as a proportion of sample deviation", and can be useful to compare differences between features that originally are on disparate scales (such as height, weight, gene expression, pH levels, etc.) and are otherwise incommensurate.
Because I don't have access to raw data files DESeq2 and etc. did not seem too effective. I know I know, working in Excel is frowned upon here and it's not my preference either but hey :]