基本的dyplr函数会给出错误: [英] Basic dyplr functions give an error: "check_dots_used"

查看:92
本文介绍了基本的dyplr函数会给出错误:的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

试图弄清楚为什么我会收到此错误(以前从未见过,谷歌没有帮助):

Trying to figure out why I am getting this error (never seen it before, google is no help):

check_dots_used中的错误(操作=警告):未使用的参数(操作=警告)

我在以下非常基本的试用版中遇到了错误,但在group_by/count中也得到了错误,但没有进行过滤或选择.

I am getting the error for the very basic trial below, but also for group_by/count, but not filter or select.

 x <- c(1, 2, 3, 4, 5)
 y <- runif(5)
 tibble(x, y)
Error in check_dots_used(action = warn) : unused argument (action = warn)

推荐答案

我遇到了同样的问题: urganmax 在评论中更新到省略号-0.3.1 的解决方案对我来说是成功的.将此作为答案,这样更容易找到.

I had the same problem: urganmax's solution to update to ellipsis-0.3.1 in a comment did it for me. Moving this as an answer so it is easier to find.

我必须显式更新/重新安装tidyverse和省略号软件包:

I had to update/re-install tidyverse and the ellipsis package explicitly:

install.packages("tidyverse")
install.packages("ellipsis")

然后重新启动会话并存储软件包(或卸载并重新加载软件包).

Then restart your session and library your packages (or unload and reload your packages).

这篇关于基本的dyplr函数会给出错误:的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆