Reputation: 3160
A new error presented itself using a basic dplyr::select
today:
library(tidyverse)
select(iris, starts_with("petal"))
returns
>Error in mut_env_parent(overscope$.top_env, lexical_env) :
object 'rlang_mut_env_parent' not found
My sessionInfo
:
Upvotes: 1
Views: 845
Reputation: 39154
For people who encountered the same problem, you could try to install the developmental version of dplyr
(dplyr_0.7.2.9000
). Based on the comments from others, at least some of us can fix this issue by doing this.
install.packages("devtools")
devtools::install_github("hadley/dplyr")
Upvotes: 2