| classified.data.frame | R Documentation |
Coerces items in data.frame with codelist attribute to 'classified': a factor with a codelist attribute.
## S3 method for class 'data.frame'
classified(x, ..., exclude = NA, ordered = is.ordered(x), nmax = NA)
x |
data.frame |
... |
passed to |
exclude |
see |
ordered |
see |
nmax |
see |
data.frame
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()
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.