tomw
tomw

Reputation: 3160

new rlang error produces errors in dplyr

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:

enter image description here

Upvotes: 1

Views: 845

Answers (1)

www
www

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

Related Questions