Normalization Module
Types
| Type | Description |
Functions and values
| Function or value | Description |
|
Example
val myData: obj
val normedData: obj
|
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.
|
Example
val myData: obj
val normedData: obj
|
|
Example
val myData: obj
val normedData: obj
|
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.
|
Example
val myData: obj
val normedData: obj
|
|
Example
val myData: obj
val normedData: obj
|
Full Usage:
zScoreTransform yData
Parameters:
Vector<float>
-
collection of values to be transformed
Returns: Vector<float>
transformed yData in unchanged order
|
Bortz J., Schuster C., Statistik für Human- und Sozialwissenschaftler, 7 (2010), p. 35
Example
|
Full Usage:
zScoreTransformPopulation yData
Parameters:
Vector<float>
-
collection of values to be transformed
Returns: Vector<float>
transformed yData in unchanged order
|
Bortz J., Schuster C., Statistik für Human- und Sozialwissenschaftler, 7 (2010), p. 35
Example
|
FSharp.Stats