print.contents: Print a contents object

Description Usage Arguments Value Examples

View source: R/print.contents.R

Description

print.contents prints the results of the content function.

Usage

1
2
## S3 method for class 'contents'
print(x, ...)

Arguments

x

a object of class contents

...

not used.

Value

No return value, called for side effects.

Examples

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

qacBase documentation built on Feb. 10, 2022, 1:07 a.m.