CLI: Sensitivity¶
Options¶
| Option | Short | Description |
|---|---|---|
--data |
-d |
Input CSV |
--treatment |
-t |
Treatment column |
--outcome |
-y |
Outcome column |
--confounders |
-c |
Confounder columns |
--method |
-m |
rosenbaum, cinelli_hazlett, evalue, all (default: all) |
--estimate |
-e |
Point estimate (optional, runs estimation if omitted) |
--se |
Standard error (optional) | |
--out |
-o |
Output directory (default: ./sensitivity) |
Examples¶
# Full suite (runs estimation first if --estimate/--se not provided)
causal-toolkit sensitivity -d data.csv -t treatment -y outcome -c age income education
# Just E-value with known estimate
causal-toolkit sensitivity -d data.csv -t treatment -y outcome \
--estimate 2.5 --se 0.45 -m evalue