From 8022c6f8a60e4a0a4dd5e2ce8311fda471d74637 Mon Sep 17 00:00:00 2001 From: Stef van Buuren Date: Wed, 19 Jul 2023 22:07:46 +0200 Subject: [PATCH] Update to mice 3.16.1 --- DESCRIPTION | 4 ++-- NEWS.md | 4 ++++ README.Rmd | 2 +- README.md | 18 +++++++++++++----- 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 2acf10f3..ce5a7be9 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Package: mice Type: Package -Version: 3.16.0 +Version: 3.16.1 Title: Multivariate Imputation by Chained Equations -Date: 2023-05-24 +Date: 2023-07-19 Authors@R: c(person("Stef", "van Buuren", role = c("aut","cre"), email = "stef.vanbuuren@tno.nl"), person("Karin", "Groothuis-Oudshoorn", role = "aut", diff --git a/NEWS.md b/NEWS.md index d3734f57..58b6c25a 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# mice 3.16.1 + +* Adds support for the `dots` argument to `ranger::ranger(...)` in `mice.impute.rf()` (#563). Contributed @edbonneville + # mice 3.16.0 ### Major changes diff --git a/README.Rmd b/README.Rmd index 9fc73aaa..e879919d 100644 --- a/README.Rmd +++ b/README.Rmd @@ -22,7 +22,7 @@ options(width = 60, digits = 3) [![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/mice)](https://cran.r-project.org/package=mice) [![](https://cranlogs.r-pkg.org/badges/mice)](https://cran.r-project.org/package=mice) [![R-CMD-check](https://github.com/amices/mice/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/amices/mice/actions/workflows/R-CMD-check.yaml) -[![](https://img.shields.io/badge/github%20version-3.16.0-orange.svg)](https://amices.org/mice/) +[![](https://img.shields.io/badge/github%20version-3.16.1-orange.svg)](https://amices.org/mice/) ## [Multivariate Imputation by Chained Equations](https://amices.org/mice/) diff --git a/README.md b/README.md index 318971ae..5bfd3954 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/mice)](https://cran.r-project.org/package=mice) [![](https://cranlogs.r-pkg.org/badges/mice)](https://cran.r-project.org/package=mice) [![R-CMD-check](https://github.com/amices/mice/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/amices/mice/actions/workflows/R-CMD-check.yaml) -[![](https://img.shields.io/badge/github%20version-3.16.0-orange.svg)](https://amices.org/mice/) +[![](https://img.shields.io/badge/github%20version-3.16.1-orange.svg)](https://amices.org/mice/) ## [Multivariate Imputation by Chained Equations](https://amices.org/mice/) @@ -47,8 +47,12 @@ library(mice, warn.conflicts = FALSE) md.pattern(nhanes) ``` -![Missing data pattern of `nhanes` data. Blue is observed, red is -missing.](man/figures/README-pattern-1.png) +
+ + +
#> age hyp bmi chl #> 13 1 1 1 1 0 @@ -75,8 +79,12 @@ imp <- mice(nhanes, maxit = 2, m = 2, seed = 1) stripplot(imp, chl, pch = 19, xlab = "Imputation number") ``` -![Distribution of `chl` per imputed data -set.](man/figures/README-stripplot-1.png) +
+ + +
In general, we would like the imputations to be plausible, i.e., values that could have been observed if they had not been missing.