add version 3.12.0 to r-mice (#21116)

This commit is contained in:
Glenn Johnson 2021-01-18 12:54:06 -06:00 committed by GitHub
parent ca9e103994
commit e132195d6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,23 +7,25 @@
class RMice(RPackage): class RMice(RPackage):
"""Multiple imputation using Fully Conditional Specification (FCS) """Multivariate Imputation by Chained Equations
implemented by the MICE algorithm as described in Van Buuren and
Groothuis-Oudshoorn (2011) <doi:10.18637/jss.v045.i03>.
Each variable has its own imputation model. Built-in imputation models are Multiple imputation using Fully Conditional Specification (FCS) implemented
provided for continuous data (predictive mean matching, normal), binary by the MICE algorithm as described in Van Buuren and Groothuis-Oudshoorn
data (logistic regression), unordered categorical data (polytomous logistic (2011) <doi:10.18637/jss.v045.i03>. Each variable has its own imputation
regression) and ordered categorical data (proportional odds). MICE can model. Built-in imputation models are provided for continuous data
also impute continuous two-level data (normal model, pan, second-level (predictive mean matching, normal), binary data (logistic regression),
variables). Passive imputation can be used to maintain consistency between unordered categorical data (polytomous logistic regression) and ordered
variables. Various diagnostic plots are available to inspect the quality categorical data (proportional odds). MICE can also impute continuous
of the imputations.""" two-level data (normal model, pan, second-level variables). Passive
imputation can be used to maintain consistency between variables. Various
diagnostic plots are available to inspect the quality of the
imputations."""
homepage = "https://cloud.r-project.org/package=mice" homepage = "https://cloud.r-project.org/package=mice"
url = "https://cloud.r-project.org/src/contrib/mice_3.0.0.tar.gz" url = "https://cloud.r-project.org/src/contrib/mice_3.0.0.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/mice" list_url = "https://cloud.r-project.org/src/contrib/Archive/mice"
version('3.12.0', sha256='575d9e650d5fc8cd66c0b5a2f1e659605052b26d61f772fff5eed81b414ef144')
version('3.6.0', sha256='7bc72bdb631bc9f67d8f76ffb48a7bb275228d861075e20c24c09c736bebec5d') version('3.6.0', sha256='7bc72bdb631bc9f67d8f76ffb48a7bb275228d861075e20c24c09c736bebec5d')
version('3.5.0', sha256='4fccecdf9e8d8f9f63558597bfbbf054a873b2d0b0820ceefa7b6911066b9e45') version('3.5.0', sha256='4fccecdf9e8d8f9f63558597bfbbf054a873b2d0b0820ceefa7b6911066b9e45')
version('3.0.0', sha256='98b6bb1c5f8fb099bd0024779da8c865146edb25219cc0c9542a8254152c0add') version('3.0.0', sha256='98b6bb1c5f8fb099bd0024779da8c865146edb25219cc0c9542a8254152c0add')
@ -31,11 +33,14 @@ class RMice(RPackage):
depends_on('r@2.10.0:', type=('build', 'run')) depends_on('r@2.10.0:', type=('build', 'run'))
depends_on('r-broom', type=('build', 'run')) depends_on('r-broom', type=('build', 'run'))
depends_on('r-dplyr', type=('build', 'run')) depends_on('r-dplyr', type=('build', 'run'))
depends_on('r-mass', type=('build', 'run')) depends_on('r-generics', when='@3.12.0:', type=('build', 'run'))
depends_on('r-mitml', type=('build', 'run')) depends_on('r-lattice', type=('build', 'run'))
depends_on('r-nnet', type=('build', 'run'))
depends_on('r-rcpp', type=('build', 'run')) depends_on('r-rcpp', type=('build', 'run'))
depends_on('r-rlang', type=('build', 'run')) depends_on('r-rlang', type=('build', 'run'))
depends_on('r-rpart', type=('build', 'run')) depends_on('r-tidyr', when='@3.12.0:', type=('build', 'run'))
depends_on('r-survival', type=('build', 'run')) depends_on('r-cpp11', when='@3.12.0:', type=('build', 'run'))
depends_on('r-lattice', type=('build', 'run')) depends_on('r-mitml', when='@:3.6.0', type=('build', 'run'))
depends_on('r-nnet', when='@:3.6.0', type=('build', 'run'))
depends_on('r-rpart', when='@:3.6.0', type=('build', 'run'))
depends_on('r-survival', when='@:3.6.0', type=('build', 'run'))
depends_on('r-mass', when='@:3.6.0', type=('build', 'run'))