Rmissax Full Access
| Flag | Description |
|------|-------------|
| -h, --help | Show help for the selected subcommand. |
| -v, --verbose | Increase output verbosity (repeatable). |
| -o, --output <file> | Write results to <file> (default: stdout). |
| --format <json|csv|html> | Choose output format. |
| --threads <N> | Number of concurrent workers (default: number of CPUs). |
| --timeout <seconds> | Global network timeout for plugins. |
# Load a realistic dataset (simulated)
library(survival)
data(lung) # contains many NAs (e.g., in 'ph.ecog')
lung_clean <- lung %>% rename_all(tolower)
# Run full mode (auto method selection, 10 imputations)
lung_imp <- RmissAX::run_full(lung_clean,
n_imp = 10,
seed = 1234,
parallel = TRUE)
# Quick look at the pooled Cox model
library(survival)
cox_fit <- coxph(Surv(time, status) ~ age + sex + ph.ecog, data = lung_imp$imputed_data)
summary(cox_fit)
What you get:
About the author:

Paul Michael
Paul Michael is a media and technology expert whose research reveals how technology and media are being used in the world today. He has expertise on computers, the internet, streaming, Roku, electronics, and education. He also enjoys graphic design & digital art. Paul has his Bachelors of Arts and Science(s) from Rutgers University-New Brunswick, NJ
