print.twoway: Print method for two-way tables

Description Usage Arguments Author(s) Examples

Description

Print method for two-way tables

Usage

1
2
## 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 "twoway" object ("overall", "roweff", "coleff", "residuals") are printed separately; if 1, the row, column and overall effects are joined to the residuals in a single table. if 2, row, column, overall and residuals are joined, and decorated with horizontal and vertical rules

zapsmall

a logical value; if TRUE small residuals are printed as 0.

...

other arguments passed down

Author(s)

Michael Friendly, Richard Heiberger

Examples

1
2
3
4
5
6
7
8
9
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)

friendly/twoway documentation built on Aug. 21, 2020, 7:03 p.m.