rakeformat {rake} | R Documentation |
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.
rakeTot(x) print.rake(x, ...) format.rake(x, ...)
x |
object of class "rake" created with the rake
function. |
... |
other arguments to pass to default methods. |
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.
Toby Dylan Hocking <tdhock@ocf.berkeley.edu>
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)