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
The new version of dplyr has gotten rid of select_(), filter_(), and etc. This breaks a couple examples in the tutorial. I think what's there mostly works with select() and filter(). For example,
The new version of dplyr has gotten rid of select_(), filter_(), and etc. This breaks a couple examples in the tutorial. I think what's there mostly works with select() and filter(). For example,
select(td, mytraits)
works.
But:
criteria <- list("X1 > -1", "D1 == 'Hello'", "is.na(XNA1)==TRUE") filter(td, .dots=criteria)
Doesn't work.
The text was updated successfully, but these errors were encountered: