今天使用基本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
:
答案 0 :(得分:2)
对于遇到相同问题的人,您可以尝试安装dplyr
(dplyr_0.7.2.9000
)的开发版本。基于其他人的评论,至少我们中的一些人可以通过这样做来解决这个问题。
install.packages("devtools")
devtools::install_github("hadley/dplyr")