Docs / Cards / FDR Correction
FDR Correction
Controls the false discovery rate across a family of tests.
| Identifier | signalstudio.fdr |
|---|---|
| Category | analysis.statistics |
| Since | 0.6.0 |
Ports
| Port | Direction | Type | Notes |
|---|---|---|---|
in | input | Table | |
out | output | Table |
Parameters
| Name | Type | Default | Meaning |
|---|---|---|---|
alpha | float | 0.05 | Target false discovery rate. |
method | enum | bh | Benjamini-Hochberg or Benjamini-Yekutieli. one of: bh, by |
Manifest
card.json
{
"id": "signalstudio.fdr",
"name": "FDR Correction",
"category": "analysis.statistics",
"inputs": [
{
"id": "in",
"type": "Table"
}
],
"outputs": [
{
"id": "out",
"type": "Table"
}
],
"params": {
"alpha": {
"type": "float",
"default": 0.05,
"doc": "Target false discovery rate."
},
"method": {
"type": "enum",
"default": "bh",
"values": [
"bh",
"by"
],
"doc": "Benjamini-Hochberg or Benjamini-Yekutieli."
}
}
}