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
This doesn't work:
library(tidyverse) library(bfuncs) df <- tibble( g = c(rep("a", 5000), rep("b", 5000)), x = runif(10000, 0, 100) ) df %>% group_by(g) %>% bfuncs::mean_table(x) Error in summarise_impl(.data, dots) : Evaluation error: `expr` must quote a symbol, scalar, or call.
But this does work:
df <- tibble( g = c(rep("a", 5000), rep("b", 5000)), a = runif(10000, 0, 100) ) df %>% group_by(g) %>% bfuncs::mean_table(a)
The text was updated successfully, but these errors were encountered:
Also, can't call variable "n"
aps_its %>% group_by(study_week, group) %>% summarise(n = n()) %>% group_by(group) %>% mean_table(n)
But, this does:
aps_its %>% group_by(study_week, group) %>% summarise(n = n()) %>% group_by(group) %>% mutate(count = n) %>% mean_table(count)
Sorry, something went wrong.
No branches or pull requests
This doesn't work:
But this does work:
The text was updated successfully, but these errors were encountered: