print.desc {prettyR} | R Documentation |
Displays a list of descriptive statistics produced by ‘describe’.
## S3 method for class 'desc'
print(x,ndec=2,...)
x |
a list of descriptive statistics produced by ‘describe’ |
ndec |
The number of decimal places to display. |
... |
additional arguments passed to ‘print’ |
‘print.desc’ displays the list of descriptive statistics produced by the ‘describe’ function.
nil
Jim Lemon
test.df<-data.frame(A=c(sample(1:10,99,TRUE),NA),C=sample(LETTERS,100,TRUE))
test.desc<-describe(test.df)
print(test.desc)