PFER | R Documentation |
Computes the Per Family Error Rate upper-bound of a stability selection model using the methods proposed by Meinshausen and Bühlmann (2010) or Shah and Samworth (2013). In stability selection, the PFER corresponds to the expected number of stably selected features that are not relevant to the outcome (i.e. False Positives).
PFER(q, pi, N, K, PFER_method = "MB")
q |
average number of features selected by the underlying algorithm. |
pi |
threshold in selection proportions. |
N |
total number of features. |
K |
number of resampling iterations. |
PFER_method |
method used to compute the upper-bound of the expected
number of False Positives (or Per Family Error Rate, PFER). If
|
The estimated upper-bound in PFER.
stabilityselectionMBsharp
\insertRefstabilityselectionSSsharp
Other stability metric functions:
ConsensusScore()
,
FDP()
,
StabilityMetrics()
,
StabilityScore()
# Computing PFER for 10/50 selected features and threshold of 0.8
pfer_mb <- PFER(q = 10, pi = 0.8, N = 50, K = 100, PFER_method = "MB")
pfer_ss <- PFER(q = 10, pi = 0.8, N = 50, K = 100, PFER_method = "SS")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.