View source: R/MODULE_3_QC_PCA.R
row_standardize | R Documentation |
Function to standardize a selected block of a data frame row-wise.
row_standardize(x, columns)
x |
Input data frame containing RNA-seq or Ribo-seq data. Rows are genes/transcripts and columns are samples. The data frame may contain additional columns for gene/transcript ID or other metadata. |
columns |
A vector specifying the columns to be included for row-wise standardization |
Row mean is subtracted from each element in the row and the result is divided by row standard deviation.
A data frame where the specified columns from the input are row-standardized and the rest is intact.
te_LMCN.v2.stnd <- row_standardize(te_LMCN.v2, columns = c(2:9))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.