unclassified.data.frame {yamlet} | R Documentation |
Unclassify Data Frame
Description
Unclassifies data.frame. Coerces 'classified' items to original values, rebuilding codelist attribute.
Usage
## S3 method for class 'data.frame'
unclassified(x, ...)
Arguments
x |
data.frame |
... |
passed to |
Value
data.frame
See Also
Other classified:
[.classified()
,
[<-.classified()
,
[[.classified()
,
[[<-.classified()
,
as.integer.classified()
,
c.classified()
,
classified()
,
classified.classified()
,
classified.data.frame()
,
classified.default()
,
classified.dvec()
,
classified.factor()
,
desolve.classified()
,
unclassified()
,
unclassified.classified()
Examples
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 %>% unclassified %>% decorations(Age, Race, Heart:glyco)
[Package yamlet version 1.2.5 Index]