Apply MAR missingness to data
Helper function to add missing values to data.
add_missingness(X, prop, cols = NULL)
X
: A data.frame or similarprop
: Numeric value between 0 and 1; the proportion of observations set to missingcols
: A vector of column names to be corrupted; if NULL, all columns are usedData with missing values
whole_data <- data.frame(a = rnorm(1000), b = rnorm(1000)) missing_data <- add_missingness(whole_data, 0.1)