Gt: Warning message: The `.dots` argument of `group_by()` is deprecated as of dplyr 1.0.0.

Created on 26 Jan 2021  路  3Comments  路  Source: rstudio/gt

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)

[2] Intermediate [2] Medium 鈾笌 Critical 鈽癸笌 Bug

Most helpful comment

Yes, I'm noticing a lot of this recently. Will need to fix this ASAP.

All 3 comments

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

Was this page helpful?
0 / 5 - 0 ratings

Related issues

higgi13425 picture higgi13425  路  4Comments

vincentarelbundock picture vincentarelbundock  路  4Comments

mine-cetinkaya-rundel picture mine-cetinkaya-rundel  路  4Comments

jthomasmock picture jthomasmock  路  3Comments

thisisnickb picture thisisnickb  路  5Comments