Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steffenmoritz/imputer
CRAN R package: Impute missing values based on automated variable selection
https://github.com/steffenmoritz/imputer
cran missing-data r
Last synced: 24 days ago
JSON representation
CRAN R package: Impute missing values based on automated variable selection
- Host: GitHub
- URL: https://github.com/steffenmoritz/imputer
- Owner: SteffenMoritz
- License: gpl-3.0
- Created: 2017-02-10T04:18:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-07-21T14:08:39.000Z (over 3 years ago)
- Last Synced: 2024-10-14T21:40:29.447Z (24 days ago)
- Topics: cran, missing-data, r
- Language: R
- Homepage:
- Size: 11 MB
- Stars: 16
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![Project Status: Active The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![Build Status](https://travis-ci.org/SteffenMoritz/imputeR.svg?branch=master)](https://travis-ci.org/SteffenMoritz/imputeR)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/steffenmoritz/imputeR?branch=master&svg=true)](https://ci.appveyor.com/project/steffenmoritz/imputeR)
[![CRAN Version](http://www.r-pkg.org/badges/version/imputeR)](https://cran.r-project.org/package=imputeR)
[![License](https://img.shields.io/badge/License-GPL--3-blue.svg
)](https://github.com/SteffenMoritz/imputeR/blob/master/LICENSE.txt)
[![CRAN Downloads](http://cranlogs.r-pkg.org/badges/imputeR)](https://cran.r-project.org/package=imputeR)# imputeR: A General Multivariate Imputation Framework
imputeR is an R package that provides a general framework for missing values imputation based on automated variable selection.
The main function `impute` inputs a matrix containing missing values and returns a complete data matrix using the variable selection functions provided as part of the package, or written by the user.
The package also offers many useful tools for imputation research based on `impute`. For example, the `Detect` function can be used to detect the variables' type in a given data matrix. `guess` can be used for naive imputation such as mean imputation, median imputation, majority imputation (for categorical variables only) and random imputation. `SimIm` function stands for "simulation for imputation". It accepts a complete matrix and randomly introduce some percentage of missing values into the matrix so imputation methods can be employed subsequently to impute this artificial missing data matrix. Because the true values are actually know so imputation accuracy can be easily calculated. This calls for the `SimEval` function that extends `SimIm` function, simulates a number of missing data matrices, applies a imputation method to these missing matrices and evaluate its performance. This enables the uncertainty of the imputation method to be obtained.
### Reference
You can cite imputeR the following:> Feng L, Moritz S, Nowak G, Welsh AH, O'Neill TJ (2018). _imputeR: A
General Multivariate Imputation Framework_. R package version 2.1, .### Version
**2.1**### License
GPL-3