print.twoway {twoway} | R Documentation |
Print method for two-way tables
Description
Print method for two-way tables
Usage
## S3 method for class 'twoway'
print(x, digits = getOption("digits"), border = 2,
zapsmall = TRUE, ...)
Arguments
x |
a numeric matrix |
digits |
number of digits to print |
border |
if 0, the components |
zapsmall |
a logical value; if |
... |
other arguments passed down |
Author(s)
Michael Friendly, Richard Heiberger
Examples
data(taskRT)
task.2way <- twoway(taskRT)
print(task.2way)
print(task.2way, border=0)
data(sentRT)
sent.2way <- twoway(sentRT)
print(sent.2way)
print(sent.2way, border=1)
[Package twoway version 0.6.3 Index]