print.freq {plotrix} | R Documentation |
Displays one or more frequency tables produced by freq
.
print.freq(x,show.pc=TRUE,...)
x |
a frequency table produced by freq |
show.pc |
whether to display percentages as well as counts. |
... |
additional arguments passed to print . |
print.freq
displays frequency tables produced by freq
.
nil
Jim Lemon
test.df<-data.frame(A=sample(1:10,50,TRUE),C=sample(LETTERS,100,TRUE)) test.freq<-freq(test.df) print(test.freq)