-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathDESCRIPTION
36 lines (36 loc) · 1.41 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Package: missRanger
Title: Fast Imputation of Missing Values
Version: 2.6.1
Authors@R:
person("Michael", "Mayer", , "mayermichael79@gmail.com", role = c("aut", "cre"))
Description: Alternative implementation of the beautiful 'MissForest'
algorithm used to impute mixed-type data sets by chaining random
forests, introduced by Stekhoven, D.J. and Buehlmann, P. (2012)
<doi:10.1093/bioinformatics/btr597>. Under the hood, it uses the
lightning fast random forest package 'ranger'. Between the iterative
model fitting, we offer the option of using predictive mean matching.
This firstly avoids imputation with values not already present in the
original data (like a value 0.3334 in 0-1 coded variable). Secondly,
predictive mean matching tries to raise the variance in the resulting
conditional distributions to a realistic level. This would allow,
e.g., to do multiple imputation when repeating the call to
missRanger(). Out-of-sample application is supported as well.
License: GPL (>= 2)
Depends:
R (>= 3.5.0)
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
Imports:
FNN,
ranger (>= 0.16.0),
stats,
utils
URL: https://github.com/mayer79/missRanger, https://mayer79.github.io/missRanger/
BugReports: https://github.com/mayer79/missRanger/issues
Suggests:
knitr,
rmarkdown,
testthat (>= 3.0.0)
VignetteBuilder: knitr
Config/testthat/edition: 3