mcar.
print.mcar(x)
mcar object (e.g. created by
mcar(x)).
x (invisibly).
Sections of the printout correspond to:
* Little's test for MCAR,
* t-test values.
These are described in the help file for
mcar.
x <- longley.x; x[runif(96) > .9] <- NA # random missing data mcar(x) # equivalent to print(mcar(x)) or print.mcar(mcar(x)) print.default(mcar(x))