print.contents {qacBase} | R Documentation |
print.contents
prints the results of the content function.
## S3 method for class 'contents'
print(x, ...)
x |
a object of class |
... |
not used. |
No return value, called for side effects.
testdata <- data.frame(height=c(4, 5, 3, 2, 100),
weight=c(39, 88, NA, 15, -2),
names=c("Bill","Dean", "Sam", NA, "Jane"),
race=c('b', 'w', 'w', 'o', 'b'))
x <- contents(testdata)
print(x)