print.desc: Display descriptive stats output

Description Usage Arguments Details Value Author(s) See Also Examples

Description

Displays a list of descriptive statistics produced by describe.

Usage

1
2
 ## S3 method for class 'desc'
print(x,ndec=2,...)

Arguments

x

a list of descriptive statistics produced by describe

ndec

The number of decimal places to display.

...

additional arguments passed to print

Details

print.desc displays the list of descriptive statistics produced by the describe function.

Value

nil

Author(s)

Jim Lemon

See Also

describe

Examples

1
2
3
 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)

prettyR documentation built on May 2, 2019, 2:16 a.m.

Related to print.desc in prettyR...