rakeformat {rake}R Documentation

Reformat the rake object for informative display

Description

rakeTot adds row and column totals to the rake matrix. This is a subroutine called by both print.rake and format.rake.

print.rake prints row and column totals to the screen.

format.rake adds row and column totals and makes names long for more readable paper output.

Usage

rakeTot(x)
print.rake(x, ...)
format.rake(x, ...)

Arguments

x object of class "rake" created with the rake function.
... other arguments to pass to default methods.

Note

Do not use the functions print.rake and format.rake explicitly. Use print and format on a "rake" class object to call these functions using S3 methods.

Author(s)

Toby Dylan Hocking <tdhock@ocf.berkeley.edu>

See Also

rake, rakeadj, predict.rake

Examples

data(certify)
r <- rake(certify,1,7)
# Note the differences between these display methods
rakeTot(r)
print(r)
format(r,digits=5)
format(r,digits=10)

[Package rake version 1.0 Index]