今天在打印tibbles时出现了新的警告消息

library(tidyverse)

mtcars %>%
  head %>%
  as_tibble
版画
# A tibble: 6 x 11
    mpg   cyl  disp    hp  drat    wt  qsec    vs    am  gear  carb
  <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1  21       6   160   110  3.9   2.62  16.5     0     1     4     4
2  21       6   160   110  3.9   2.88  17.0     0     1     4     4
3  22.8     4   108    93  3.85  2.32  18.6     1     1     4     1
4  21.4     6   258   110  3.08  3.22  19.4     1     0     3     1
5  18.7     8   360   175  3.15  3.44  17.0     0     0     3     2
6  18.1     6   225   105  2.76  3.46  20.2     1     0     3     1
Warning message:
`...` is not empty.

We detected these problematic arguments:
* `needs_dots`

These dots only exist to allow future extensions and should be empty.
Did you misspecify an argument?
我如何摆脱该警告?
这是我的sessionInfo() r - Dplyr警告:  `…`  is not empty-LMLPHP

最佳答案

这个问题不是任何SO问题(我都能找到)的重复,但是它是tibble(tibble/#798)上一个问题的重复,其中可重复的代码仅仅是:

tibble::tibble(a = 1)
#> Warning: `...` is not empty.
#>
#> We detected these problematic arguments:
#> * `needs_dots`
#>
#> These dots only exist to allow future extensions and should be empty.
#> Did you misspecify an argument?
#> # A tibble: 1 x 1
#>       a
#>   <dbl>
#> 1     1
工作中有一个修补程序(a384b33),看来它们将推送新的CRAN版本。
您的选择是:
  • 降级与
    remotes::install_version("pillar", version = "1.4.4")
    
  • 使用以下命令安装tibble的github版本
    remotes::install_github("tidyverse/tibble")
    
  • 或等待CRAN发行(in work)。
  • 08-15 23:23