新的rlang错误会在dplyr中产生错误

时间:2017-08-10 18:52:19

标签: r dplyr tidyverse rlang

今天使用基本dplyr::select呈现了一个新错误:

library(tidyverse)
select(iris, starts_with("petal"))

返回

>Error in mut_env_parent(overscope$.top_env, lexical_env) : 
  object 'rlang_mut_env_parent' not found

我的sessionInfo

enter image description here

1 个答案:

答案 0 :(得分:2)

对于遇到相同问题的人,您可以尝试安装dplyrdplyr_0.7.2.9000)的开发版本。基于其他人的评论,至少我们中的一些人可以通过这样做来解决这个问题。

install.packages("devtools")
devtools::install_github("hadley/dplyr")