Use print() on a table object

USAGE:

print.table(x, digits = .Options$digits, quote = F, right = F, 
            NA.fill = NULL, NaN.fill = NULL, ...) 

REQUIRED ARGUMENTS:

x
an object inheriting from class table.

OPTIONAL ARGUMENTS:

digits
the number of significant digits that should be printed in numeric data.
quote
logical flag: if TRUE, character strings are printed with surrounding quotes.
right
logical flag: if TRUE, contents of the table is right justified in columns of output.
NA.fill
character string to print for NA values in x.
NaN.fill
character string to print for NaN values in x.

DETAILS:

This is a method for the function print() for objects inheriting from class table. See print or print.default for the general behavior of this function and for the interpretation of x, quote.