gen.mcar {RfEmpImp} | R Documentation |
Generate missing (completely at random) cells in a data set
Description
Generate missing (completely at random) cells in a data set
Usage
gen.mcar(df, prop.na = 0.2, warn.empty.row = TRUE, ...)
Arguments
df |
Input data frame or matrix. |
prop.na |
Proportion of generated missing cells. The default is
|
warn.empty.row |
Show a warning if empty rows were present in the output data set. |
... |
Other parameters (will be ignored). |
Value
A data frame or matrix containing generated missing cells.
Author(s)
Shangzhi Hong
Examples
data("mtcars")
mtcars.mcar <- gen.mcar(mtcars, warn.empty.row = FALSE)
[Package RfEmpImp version 2.1.8 Index]