Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
dplyr::select今天使用基本的出现了一个新错误:
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:
sessionInfo
对于遇到同样问题的人,可以尝试安装dplyr(dplyr_0.7.2.9000)的开发版。根据其他人的评论,至少我们中的一些人可以通过这样做来解决这个问题。
dplyr
dplyr_0.7.2.9000
install.packages("devtools") devtools::install_github("hadley/dplyr")