convertToZScores {caOmicsV} | R Documentation |
Calculate z-scores for data values in a data frame. The row ID must be in the first column followed by data values.
convertToZScores(exprData)
exprData |
A data frame with first column as row IDs and others are numeric values. |
A data frame with z scores for each row. The first column is still row IDs.
Henry Zhang
data(RNASeqDemoData) exprZ <- convertToZScores(RNASeqDemoData)