https://github.com/inbo/multimput
multimput is an R package that assists with analysing dataset with missing values using multiple imputation.
https://github.com/inbo/multimput
imputation imputation-model package r
Last synced: 5 months ago
JSON representation
multimput is an R package that assists with analysing dataset with missing values using multiple imputation.
- Host: GitHub
- URL: https://github.com/inbo/multimput
- Owner: inbo
- License: gpl-3.0
- Created: 2015-12-08T08:37:18.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2025-02-27T21:14:09.000Z (8 months ago)
- Last Synced: 2025-04-12T01:23:46.258Z (6 months ago)
- Topics: imputation, imputation-model, package, r
- Language: R
- Homepage: https://inbo.github.io/multimput
- Size: 11.4 MB
- Stars: 1
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Citation: CITATION.cff
- Zenodo: .zenodo.json
Awesome Lists containing this project
README
[](https://www.repostatus.org/#active)
[](https://lifecycle.r-lib.org/articles/stages.html#maturing-1)
[](http://www.gnu.org/licenses/gpl-3.0.html)
[](https://github.com/inbo/multimput/releases)
[](https://github.com/inbo/multimput/actions/workflows/check_on_branch.yml)


[](https://app.codecov.io/gh/inbo/multimput?branch=main)


[](http://dx.doi.org/10.5281/zenodo.48423)# multimput
## Rationale
The `multimput` package was originally intended to provide the data and code to replicate the results of Onkelinx, Devos, and Quataert (2016).
This paper is freely available at http://dx.doi.org/10.1007/s10336-016-1404-9.
The functions were all rewritten to make them more user-friendly and more generic.
In order to make the package more compact, we removed the original code and data starting for version 0.2.6.
However both the original code and data remain available in [the older releases](https://github.com/inbo/multimput/releases).## Documentation
All helpfiles and vignettes are available at https://inbo.github.io/multimput/
## Installation
This package requires the `INLA` package.
You need to install it with `install.packages("INLA", repos = "https://inla.r-inla-download.org/R/stable")`.
If this fails you can use `remotes::install_github("inbo/INLA")`.
Note that the latter is just a read-only mirror which is infrequently updated.
Hence installing `INLA` from https://inla.r-inla-download.org is highly recommended.Once `INLA` is installed, you can install `multimput` using the `remotes` package: `remotes::install_github("inbo/multimput", build_vignettes = TRUE)`).
To view the vignette use `vignette("Impute", package = "multimput")`.
The vignette is also available at https://inbo.github.io/multimput/articles/impute.htmlA docker image with all the required dependencies is available from https://hub.docker.com/r/inbobmk/multimput/.
Use `docker pull inbobmk/multimput` to get it.## Folder structure
The folder structure is that of a typical R packages with the mandatory `R` folder (definition of the functions) and `man` (helpfiles in Rd format).
`data` is an optional folder in which some data sets are stored.
The optional `test` folder contains the unit tests using the infrastructure from the `testthat` package.
The optional `vignette` folder contains examples of the available themes.
`man-roxygen` contains `roxygen2` templates for the documentation.```
multimput
|-- data
|-- man
|-- man-roxygen
|-- R
|-- tests
|-- testthat
|-- vignettes
```