squash {pcutils} | R Documentation |
Squash one column in a data.frame using other columns as id.
Description
Squash one column in a data.frame using other columns as id.
Usage
squash(df, column, split = ",")
Arguments
df |
data.frame |
column |
column name, not numeric position |
split |
split string |
Value
data.frame
Examples
df <- data.frame(a = c(1:2, 1:2), b = letters[1:4])
squash(df, "b", ",")
[Package pcutils version 0.2.6 Index]