Print tests for "Missing Completely at Random" (MCAR)

DESCRIPTION:

This is a print method for objects of class mcar.

USAGE:

print.mcar(x) 

REQUIRED ARGUMENTS:

x
an mcar object (e.g. created by mcar(x)).

VALUE:

x (invisibly).

SIDE EFFECTS:

Prints information from tests for MCAR.

DETAILS:

Sections of the printout correspond to:
* Little's test for MCAR,
* t-test values.
These are described in the help file for mcar.

SEE ALSO:

, , .

EXAMPLES:

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))