Perform a group_split on a rezrDF
rez_group_split.Rd
The main difference with dplyr::group_split()
is that attributes are retained. If you use dplyr::group_split()
, attributes will NOT be retained.
Note
This is mostly useful for creating smaller emancipated rezrDFs. Do not assign the results of this function back to a rezrObj.
Examples
sbc007_arguments_byRelation = sbc007$treeEntry$default %>% filter(level = 1) %>% group_split(Relation)
#> Error in filter(., level = 1): We detected a named input.
#> ℹ This usually means that you've used `=` instead of `==`.
#> ℹ Did you mean `level == 1`?