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
It took me a while to create a reproducible example - I hope this is not double posting (see #278 - similar problem supposed to be solved?). It seems that there is a problem with the lazy evaluation:
# Example filtering that worksres<-diamonds %>% filter(carat>= min(diamonds$carat))
# Let's throw in a random grouped operation:interm<-diamonds %>% group_by(clarity) %>% do(data.frame(.))
# This breaks:interm %>% filter(carat>= min(diamonds$carat))
# This doesn't:m<- min(diamonds$carat)
interm %>% filter(carat>=m)
The text was updated successfully, but these errors were encountered:
It took me a while to create a reproducible example - I hope this is not double posting (see #278 - similar problem supposed to be solved?). It seems that there is a problem with the lazy evaluation:
The text was updated successfully, but these errors were encountered: