We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http://stackoverflow.com/questions/24880835
The text was updated successfully, but these errors were encountered:
Looks like it's the non-standard eval:
library(microbenchmark) iris1 <- iris[sample(1:nrow(iris), 1e4, replace = T), ] microbenchmark( melt = reshape2::melt(iris1,id.vars="Species"), gather = tidyr::gather(iris1, variable, value, -Species), gather_ = tidyr::gather_(iris1, quote(variable), quote(value), c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width")) )
Unit: milliseconds expr min lq median uq max neval melt 2.41 2.66 3.15 4.87 52.49 100 gather 3.97 4.98 6.40 6.82 8.41 100 gather_ 2.43 2.67 3.07 4.94 51.42 100
Sorry, something went wrong.
eb5fff7
No branches or pull requests
http://stackoverflow.com/questions/24880835
The text was updated successfully, but these errors were encountered: