specify.data.frame: Specify Data Frame

View source: R/spec.R

specify.data.frameR Documentation

Specify Data Frame

Description

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

Usage

## 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

data(drug)
spec <- specification(drug,tol = 3)
drug %matches% spec
drug <- specify(drug,spec)
attributes(drug$HEIGHT)

bergsmat/spec documentation built on Feb. 21, 2024, 1:20 p.m.