Skip to content

Commit

Permalink
Update to mice 3.16.17
Browse files Browse the repository at this point in the history
  • Loading branch information
stefvanbuuren committed Nov 22, 2024
1 parent 29ed103 commit 21301e7
Show file tree
Hide file tree
Showing 9 changed files with 5,110 additions and 358 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: mice
Type: Package
Version: 3.16.16
Version: 3.16.17
Title: Multivariate Imputation by Chained Equations
Date: 2024-10-16
Date: 2024-11-22
Authors@R: c(person("Stef", "van Buuren", role = c("aut","cre"),
email = "[email protected]"),
person("Karin", "Groothuis-Oudshoorn", role = "aut",
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# mice 3.16.17

* Create version to perform reverse dependency checks

# mice 3.16.16

* Prevent `as.mids()` from filling the `imp` object for complete variables
Expand Down
13 changes: 5 additions & 8 deletions R/ampute.R
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@
#' mechanisms: the missingness depends completely on chance (MCAR), the missingness
#' depends on the values of the observed variables (i.e. the variables that remain
#' complete) (MAR) or on the values of the variables that will be made incomplete (MNAR).
#' For a discussion on how missingness mechanisms are related to the observed data,
#' we refer to \doi{10.1177/0049124118799376}.
#'
#' When the user specifies the missingness mechanism to be \code{"MCAR"}, the candidates
#' have an equal probability of becoming incomplete. For a \code{"MAR"} or \code{"MNAR"} mechanism,
Expand Down Expand Up @@ -82,11 +80,9 @@
#' The continuous distributions of probabilities are based on the logistic distribution function.
#' The user can specify the type of missingness, which, again, may differ between patterns.
#'
#' For an example and more explanation about how the arguments interact with each other,
#' we refer to the vignette
#' \href{https://rianneschouten.github.io/mice_ampute/vignette/ampute.html}{Generate missing values with ampute}
#' The amputation methodology is published in
#' \doi{10.1080/00949655.2018.1491577}
#' For an example and more explanation about how the arguments interact with
#' each other, we refer to the vignette:
#' \href{https://rianneschouten.github.io/mice_ampute/vignette/ampute.html}{Generate missing values with ampute}.
#'
#' @param data A complete data matrix or data frame. Values should be numeric.
#' Categorical variables should have been transformed to dummies.
Expand Down Expand Up @@ -156,7 +152,8 @@
#' @seealso \code{\link{mads-class}}, \code{\link{bwplot}}, \code{\link{xyplot}},
#' \code{\link{mice}}
#'
#' @references Brand, J.P.L. (1999) \emph{Development, implementation and
#' @references
#' Brand, J.P.L. (1999) \emph{Development, implementation and
#' evaluation of multiple imputation strategies for the statistical analysis of
#' incomplete data sets.} pp. 110-113. Dissertation. Rotterdam: Erasmus University.
#'
Expand Down
10 changes: 3 additions & 7 deletions man/ampute.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

295 changes: 199 additions & 96 deletions revdep/README.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions revdep/check.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ library(revdepcheck)
revdep_reset()

# the following takes two hours
revdep_check(num_workers = 3)
revdep_check(num_workers = 10)

# print out results
revdep_summary()
revdep_details(revdep = "smartdata")

# commit
# commit
system("git add revdep/*.md")
system("git commit -m 'Update revdep results'")
system("git push -u origin HEAD")

# signal package authors


# after successfully submitted to CRAN, clean up
# after successfully submitted to CRAN, clean up
revdep_reset()
Loading

0 comments on commit 21301e7

Please sign in to comment.