Type | Description |
Function or value | Description |
|
Median of ratios normalization As used by Deseq2, see: https://github.com/hbctraining/DGE_workshop/blob/master/lessons/02_DGE_count_normalization.md . Rows are genes, columns are samples
Example
|
Full Usage:
medianOfRatiosBy f data
Parameters:
float -> float
-
The transformation function is applied on all values of the matrix before calculating the normalization factors.
data : Matrix<float>
-
data matrix with columns as features (samples,time points) and rows as measured entities (genes,proteins).
Returns: MorResult
Normalized data matrix with correction factors and normalization function.
|
Median of ratios normalization As used by Deseq2, see: https://github.com/hbctraining/DGE_workshop/blob/master/lessons/02_DGE_count_normalization.md . Rows are genes, columns are samples
Example
|
|
Median of ratios normalization As used by Deseq2, see: https://github.com/hbctraining/DGE_workshop/blob/master/lessons/02_DGE_count_normalization.md . Columns are genes, rows are samples
Example
|
Full Usage:
medianOfRatiosWideBy f data
Parameters:
float -> float
-
The transformation function is applied on all values of the matrix before calculating the normalization factors.
data : Matrix<float>
-
data matrix with columns as measured entities and rows as features (samples,time points) (genes,proteins).
Returns: MorResult
Normalized data matrix with correction factors and normalization function.
|
Median of ratios normalization As used by Deseq2, see: https://github.com/hbctraining/DGE_workshop/blob/master/lessons/02_DGE_count_normalization.md . Columns are genes, rows are samples
Example
|
|
Quantile normalization with equal number of elements (rows) for each sample (column). Column mean and column standard deviation are qual after normalization. Rows are genes, columns are samples.
Example
|
|
z score normalization/transformation using the sample standard deviation. Rarely used since variance is not equal to 1. Bortz J., Schuster C., Statistik für Human- und Sozialwissenschaftler, 7 (2010), p. 35
Example
|
|
Bortz J., Schuster C., Statistik für Human- und Sozialwissenschaftler, 7 (2010), p. 35
Example
|