specify.data.frame: Specify Data Frame

Description Usage Arguments See Also Examples

Description

Attach specifics to a data.frame as attributes, including label and guide.

Usage

1
2
## S3 method for class 'data.frame'
specify(x, spec, na.rm = TRUE, empty.rm = TRUE, ...)

Arguments

x

data.frame

spec

a data spec (or corresponding filepath) to use as source of attributes

na.rm

if TRUE, don't assign NA where encountered

empty.rm

if TRUE, don't assign empty string where encountered

...

passed arguments

See Also

Other specify: specify.character, specify

Examples

1
2
3
4
5
data(drug)
spec <- specification(drug,tol = 3)
drug \%matches\% spec
drug <- specify(drug,spec)
attributes(drug$HEIGHT)

spec documentation built on May 2, 2019, 10:14 a.m.