Index of /web/packages/rMIDAS/readme

[ICO]NameLast modifiedSizeDescription

[PARENTDIR]Parent Directory  -  
[DIR]man/2020-09-29 10:10 -  
[TXT]README.html2020-09-29 10:10 8.4K 

README

rMIDAS

Overview

rMIDAS is a multiple imputation package for R using deep learning, providing a simplified workflow to multiply impute and analyse data:

rMIDAS is based on MIDASpy. More information about the underlying imputation method can be found here.

Efficient handling of large data

rMIDAS also incorporates several features to streamline and improve the efficiency of multiple imputation analysis:

Installation

rMIDAS should be available on CRAN very soon. In the meantime, you can use the code below to install the development version:

# install.packages("devtools")
devtools::install_github("MIDASverse/rMIDAS")

Note that rMIDAS uses the reticulate package to interface with Python. Users must have Python 3.X installed in order to run MIDAS. rMIDAS will automatically try to find Python 3 unless users specify their own version, using the following code:

library(rMIDAS)

# Point to a Python binary
set_python_env(path = "path/to/python/binary", type = "auto", exact = FALSE)

# Point to a virtualenv binary
set_python_env(path = "path/to/virtual/env", type = "virtualenv", exact = FALSE)

# Point to a condaenv, where conda can be supplied to choose a specific executable
set_python_env(path = "path/to/conda/env", type = "auto", exact = FALSE, conda = "auto")

Getting help

rMIDAS is still in development, and we may not have caught all bugs. If you come across any difficulties, or have any suggestions for improvements, please raise an issue here.