Hello, hello! 馃崄
It seems that something in the gt print function is throwing a warning that the .dots argument of group_by() is deprecated as of dplyr 1.0.0. I have put together a small example that result in the warning. Hope it helps. 馃尡
library(gt)
packageVersion("gt")
#> [1] '0.2.2'
packageVersion("dplyr")
#> [1] '1.0.3'
tbl <-
head(countrypops) %>%
gt() %>%
tab_style(
style = cell_text(indent = px(10), align = "left"),
locations = cells_body(columns = vars(country_name),
rows = !is.na(country_name))
)
print(tbl)
#> Warning: The `.dots` argument of `group_by()` is deprecated as of dplyr 1.0.0.
#> This warning is displayed once every 8 hours.
#> Call `lifecycle::last_warnings()` to see where this warning was generated.
Created on 2021-01-26 by the reprex package (v0.3.0)
Yes, I'm noticing a lot of this recently. Will need to fix this ASAP.
The error still comes every 8 hours.
Any news of its fixing? Thanks.
@sanjmeh update the gt package and I think this problem will go away
Most helpful comment
Yes, I'm noticing a lot of this recently. Will need to fix this ASAP.