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
A word about pipelines: we aim to use these consistently and when it makes sense...but don't take things to extremes. Sometimes y <- f(g(x)) really is the clearest notation.
Things NOT to use
The package tests will raise an error for all of these:
R's match() function
The reshape or reshape2 packages (i.e. melt or cast)
Loops (this is not an ironclad prohibition, but should be very rare)
R's ifelse function - if necessary use dplyr::if_else instead
Any of R's apply family of functions, rowMeans, etc. (again, with rare exceptions)