You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for all your efforts in making these libraries available. Much appreciated!
I believe I have found a minimal(ish) reproducible example of an issue I am also encountering.
library(tidyverse)
library(modelr)
smaller<-diamonds %>% filter(carat<3)
mod_diamond2<- lm(price~carat+color+cut+clarity, data=smaller)
grid<-smaller %>%
data_grid(cut, .model=mod_diamond2) %>%
add_predictions(mod_diamond2)
#> Error in eval_tidy(xs[[i]], unique_output): object 'G' not found
Thank you for all your efforts in making these libraries available. Much appreciated!
I believe I have found a minimal(ish) reproducible example of an issue I am also encountering.
Created on 2018-05-10 by the reprex package (v0.2.0).
The text was updated successfully, but these errors were encountered: