-
Notifications
You must be signed in to change notification settings - Fork 12
Closed
Labels
bugSomething isn't workingSomething isn't workinghelp wantedExtra attention is neededExtra attention is needed
Description
As Logan and I found in #49, care must be taken with how we write as_tibble.epi_df.
The tradeoffs are as follows:
- if
as_tibble.epi_dfdoesn't remove metadata, then it doesn't actually convert the class to a tibble, which causes an infinite loop insidedplyr::dplyr_col_modify- furthermore, it's confusing design to have a function named
as_tibblenot actually return a tibble
- furthermore, it's confusing design to have a function named
- if
as_tibble.epi_dfdoes remove metadata, then we have the issue of losingepi_dfinformation every time we use, for instance,epi_df %>% group_by() %>% mutate()
Possible solutions are:
- find where
dplyrusesas_tibble, e.g.mutateand add S3 alternatives for those - ?
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinghelp wantedExtra attention is neededExtra attention is needed