You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
library(dplyr, warn.conflicts=FALSE)
library(dtplyr)
dt<- lazy_dt(tibble(x=1), "DT")
dt %>% group_by(x) %>% group_by()
#> Error in new_step(parent, vars = parent$vars, groups = groups, class = "dtplyr_step_group", : is.character(groups) is not TRUEdt %>% as_tibble() %>% group_by(x) %>% group_by()
#> # A tibble: 1 x 1#> x#> <dbl>#> 1 1dt %>% mutate(!!!list())
#> Error in `[.data.table`(copy(DT), , `:=`()): In `:=`(col1=val1, col2=val2, ...) form, all arguments must be named.dt %>% transmute()
#> Error in new_step(parent = parent, vars = vars, groups = groups, locals = locals, : is.character(vars) is not TRUEdt %>% transmute(!!!list())
#> Error in new_step(parent = parent, vars = vars, groups = groups, locals = locals, : is.character(vars) is not TRUE
Created on 2021-05-19 by the reprex package (v2.0.0)
The text was updated successfully, but these errors were encountered: