Skip to content

Commit 9cd175b

Browse files
committed
0.9.0
1 parent f8212b7 commit 9cd175b

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: miceFast
22
Title: Fast Imputations Using 'Rcpp' and 'Armadillo'
3-
Version: 0.8.5.9000
3+
Version: 0.9.0
44
Authors@R: person("Maciej", "Nasinski", email = "nasinski.maciej@gmail.com", role = c("aut", "cre"))
55
Description:
66
Fast imputations under the object-oriented programming paradigm.

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# miceFast 0.8.5.9000
1+
# miceFast 0.9.0
22

33
Kota Hattori, thank you for your feedback and for motivating me for this deep update.
44

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ See the [Introduction vignette](https://polkas.github.io/miceFast/articles/miceF
127127
- **Object-Oriented Interface** via `miceFast` objects (Rcpp modules).
128128
- **Convenient Helpers**:
129129
- `fill_NA()`: Single imputation (`lda`, `lm_pred`, `lm_bayes`, `lm_noise`).
130-
- `fill_NA_N()`: Multiple imputations (`pmm`, `lm_bayes`, `lm_noise`).
130+
- `fill_NA_N()`: Averaged multiple imputations (mean of N draws) (`pmm`, `lm_bayes`, `lm_noise`).
131131
- `pool()`: Pool multiply imputed results using Rubin's rules.
132132
- `VIF()`: Variance Inflation Factor calculations.
133133
- `naive_fill_NA()`: Automatic naive imputations.
@@ -151,6 +151,7 @@ See the [Introduction vignette](https://polkas.github.io/miceFast/articles/miceF
151151

152152
## Practical Advice
153153

154+
- **Only need a filled-in dataset for exploration or ML?** A single imputation with `fill_NA()` or averaging draws with `fill_NA_N()` is fast and convenient. For any inferential statement use full MI with `pool()`.
154155
- **Little missing data + MCAR?** Consider using `complete.cases()` — listwise deletion is unbiased under MCAR and may be sufficient when the fraction of incomplete rows is small.
155156
- **For publication**, always run a **sensitivity analysis**: compare MI results against base methods (`complete.cases()`, mean imputation) and across different imputation models (`lm_bayes`, `lm_noise`, `pmm`). Vary the number of imputations. If conclusions change, investigate why. Report the imputation model, *m*, and any assumptions about the missing-data mechanism.
156157
- See the [MI vignette](https://polkas.github.io/miceFast/articles/missing-data-and-imputation.html) for details on MCAR/MAR/MNAR mechanisms and a practical checklist.

0 commit comments

Comments
 (0)