categorize {ecr} | R Documentation |
Assign group membership based on another group membership.
Description
Given a data frame and a grouping column of type factor or character this function generates a new grouping column which groups the groups.
Usage
categorize(df, col, categories, cat.col, keep = TRUE, overwrite = FALSE)
Arguments
df |
[ |
col |
[ |
categories |
[ |
cat.col |
[ |
keep |
[ |
overwrite |
[ |
Value
[data.frame
]
df = data.frame(
group = c("A1", "A1", "A2", "A2", "B1", "B2"),
perf = runif(6),
stringsAsFactors = FALSE)
df2 = categorize(df, col = "group", categories = list(A = c("A1", "A2"), B = c("B1", "B2")), cat.col = "group2")
[Package ecr version 2.1.1 Index]