Qvalues Module
Estimate the q-values for a given set of p-values. The q-value of a test measures the proportion of false positives incurred (called the false discovery rate) when that particular test is called significant.
Functions and values
| Function or value | Description |
Full Usage:
ofPValues pi0 pValues
Parameters:
float
-
can be calculated with 'pi0Bootstrap' or 'pi0BootstrapWithLambda'.
pValues : float[]
-
sequence of p values to correct
Returns: float array
|
|
Full Usage:
ofPValuesBy pi0 projection pValues
Parameters:
float
-
can be calculated with 'pi0Bootstrap' or 'pi0BootstrapWithLambda'.
projection : 'a -> float
-
projection function to isolate the pvalue from input type 'a
pValues : 'a[]
-
sequence of p values to correct
Returns: float array
|
|
Full Usage:
ofPValuesRobust pi0 pValues
Parameters:
float
-
can be calculated with 'pi0Bootstrap' or 'pi0BootstrapWithLambda'.
pValues : float[]
-
sequence of p values to correct
Returns: float array
|
|
Full Usage:
ofPValuesRobustBy pi0 projection pValues
Parameters:
float
-
can be calculated with 'pi0Bootstrap' or 'pi0BootstrapWithLambda'.
projection : 'a -> float
-
projection function to isolate the pvalue from input type 'a
pValues : 'a[]
-
sequence of p values to correct
Returns: float array
|
|
Full Usage:
pi0Bootstrap pValues
Parameters:
float[]
Returns: float
|
|
Full Usage:
pi0BootstrapWithLambda lambda pValues
Parameters:
float[]
pValues : float[]
Returns: float
|
|
FSharp.Stats