uncount {tidyft} | R Documentation |
"Uncount" a data frame
Description
Performs the opposite operation to 'dplyr::count()', duplicating rows according to a weighting variable (or expression). Analogous to 'tidyr::uncount'.
Usage
uncount(.data, wt, .remove = TRUE)
Arguments
.data |
A data.frame |
wt |
A vector of weights. |
.remove |
Should the column for |
Value
A data.table
See Also
Examples
df <- data.table(x = c("a", "b"), n = c(1, 2))
uncount(df, n)
uncount(df,n,FALSE)
[Package tidyft version 0.5.7 Index]