Learn R Programming

yamlet (version 1.2.1)

classified.data.frame: Classify Data Frame

Description

Coerces items in data.frame with codelist attribute to 'classified': a factor with a codelist attribute.

Usage

# S3 method for data.frame
classified(x, ..., exclude = NA, ordered = is.ordered(x), nmax = NA)

Value

data.frame

Arguments

x

data.frame

...

passed to select to limit column scope

exclude

see factor

ordered

see factor

nmax

see factor

See Also

Other classified: [.classified(), [<-.classified(), [[.classified(), [[<-.classified(), as.integer.classified(), c.classified(), classified(), classified.classified(), classified.default(), classified.dvec(), classified.factor(), desolve.classified(), unclassified(), unclassified.classified(), unclassified.data.frame()

Other interface: canonical.decorated(), decorate.character(), decorate.data.frame(), desolve.decorated(), enscript.default(), ggplot.decorated(), io_csv.character(), io_csv.data.frame(), io_res.character(), io_res.decorated(), io_table.character(), io_table.data.frame(), io_yamlet.character(), io_yamlet.data.frame(), is_parseable.default(), mimic.default(), modify.default(), promote.list(), read_yamlet(), resolve.decorated(), selected.default(), write_yamlet()

Examples

Run this code
library(magrittr)
file <- system.file(package = 'yamlet', 'extdata','quinidine.csv')
x <- decorate(file)
x %>% explicit_guide %>% decorations(Age, Race, Heart:glyco)
x %>% explicit_guide %>% classified %>% decorations(Age, Race, Heart:glyco)
x %>% explicit_guide %>% classified(Heart:glyco) %>% decorations(Age, Race, Heart:glyco)

Run the code above in your browser using DataLab