Normalization | R Documentation |
Normalize count or other data.
Normalization( counts, normalization = c("logTPM", "cosine", "none"), normalize_factor = 10000, zero_percent = 0.7, verbose = FALSE )
counts |
Data to normalize. An N x M matrix with N rows of features and M columns of data points. |
normalization |
Normalization method used. Default is cosine.
|
normalize_factor |
Normalization factor used with lognorm method. Default is 10000. |
zero_percent |
Zero-entry percentage threshold. If the number of zero entries in the returned matrices is above this number, a sparse matrix will be returned. Default is 0.7 aka 70%. |
verbose |
Whether to display a process bar for cosine normalization. Default is FALSE. |
Returns the normalized data.
## Not run: normalized.data <- Normalization(data) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.