Description Usage Arguments Details Author(s) References See Also Examples
The print.mimids()
function prints an object of the mimids
class.
1 2 |
x |
This argument specifies an object of the |
n |
This argument specifies the matched imputed dataset number, intended to print its matching profile. The input must be a positive integer. The default is |
digits |
This argument specifies minimal number of significant digits. |
... |
Additional arguments to be passed to the |
The matching profile of the mimids
class objects is printed.
Farhad Pishgar
Daniel Ho, Kosuke Imai, Gary King, and Elizabeth Stuart (2007). Matching as Nonparametric Preprocessing for Reducing Model Dependence in Parametric Causal Inference. Political Analysis, 15(3): 199-236. http://gking.harvard.edu/files/abs/matchp-abs.shtml
1 2 3 4 5 6 7 8 9 10 11 12 13 | #Loading the dataset
data(dataset)
#Multiply imputing the missing values
imputed.datasets <- mice(dataset, m = 5, maxit = 10,
method = c("", "", "", "mean", "polyreg", "logreg", "logreg", "logreg"))
#Matching the multiply imputed datasets
matched.datasets <- matchitmice(OSP ~ AGE + SEX + BMI + RAC + SMK, imputed.datasets,
approach = 'within', method = 'nearest')
#Printing the first imputed dataset
print(matched.datasets, n = 1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.