- cov
Column indices of any normally distributed covariates used in the data set.
- pmMCAR
Decimal percent of missingness to introduce completely at random on all variables.
- pmMAR
Decimal percent of missingness to introduce using the listed covariates as predictors.
- logit
The script used for imposing missing values by logistic regression. The script is similar to the specification of regression in lavaan
such that each line begins with a dependent variable, then '~' is used as regression sign, and the formula of a linear combination of independent variable plus constant, such as y1 ~ 0.5 + 0.2*y2. '#' and '!' can be used as a comment (like lavaan
). For the intercept, users may use 'p()' to specify the average proportion of missing, such as y1 ~ p(0.2) + 0.3*y2, which the average missing proportion of y1 is 0.2 and the missing of y1 depends on y2. Users may visualize the missing proportion from the logistic specification by the plotLogitMiss
function.
- nforms
The number of forms for planned missing data designs, not including the shared form.
- itemGroups
List of lists of item groupings for planned missing data forms. Without this, items will be divided into groups sequentially (e.g. 1-3,4-6,7-9,10-12)
- timePoints
Number of timepoints items were measured over. For longitudinal data, planned missing designs will be implemented within each timepoint.
- twoMethod
With missing on one variable: vector of (column index, percent missing). Will put a given percent missing on that column in the matrix to simulate a two method planned missing data research design. With missing on two or more variables: list of (column indices, percent missing).
- prAttr
Probability (or vector of probabilities) of an entire case being removed due to attrition at a given time point. See imposeMissing
for further details.
- m
The number of imputations (DEPRECATED). The only currently accepted value is 0, indicating to use full information maximum likelihood estimation.
- convergentCutoff
DEPRECATED. If the proportion of convergent results across imputations are greater than the specified value (the default is 80%), the analysis on the dataset is considered as convergent. Otherwise, the analysis is considered as nonconvergent. This attribute is applied for multiple imputation only (currently not supported).
- ignoreCols
The columns not imposed any missing values for any missing data patterns
- threshold
The threshold of covariates that divide between the area to impose missing and the area not to impose missing. The default threshold is the mean of the covariate.
- covAsAux
If TRUE
, the covariate listed in the object will be used as auxiliary variables when putting in the model object. If FALSE
, the covariate will be included in the analysis.
- logical
A matrix of logical values (TRUE/FALSE
). If a value in the dataset is corresponding to the TRUE
in the logical matrix, the value will be missing.
- ...
DEPRECATED. Additional arguments passed to a multiple-imputation function (no longer supported).