Turns a single character column into features while separating with delimiter.
Arguments
- tbl
A data.frame that has feature column to be prettified.
- col
<
data-masked
> Column name where to be prettified.- into
Character vector that is used as column names of features.
- col_select
Character or integer vector that will be kept in prettified features.
- delim
Character scalar used to separate fields within a feature.
Examples
prettify(
data.frame(x = c("x,y", "y,z", "z,x")),
col = "x",
into = c("a", "b"),
col_select = "b"
)
#> b
#> 1 y
#> 2 z
#> 3 x