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
vehicle_summary_tbl <- mpg %>% select(class, where(is_numeric), -year) %>% group_by(class) %>% summarise( across(displ:hwy, .fns = median) ) %>% ungroup() %>% rename(group = class) %>% mutate_at(vars(-group), rescale)
Error in is_fun_list(.funs) : object 'rescale' not found In addition: There were 11 warnings (use warnings() to see them)
warnings() Warning messages: 1: Deprecated 2: Deprecated 3: Deprecated 4: Deprecated 5: Deprecated 6: Deprecated 7: Deprecated 8: Deprecated 9: Deprecated 10: Deprecated 11: Deprecated
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FORMAT ----
vehicle_summary_tbl <- mpg %>%
select(class, where(is_numeric), -year) %>%
group_by(class) %>%
summarise(
across(displ:hwy, .fns = median)
) %>%
ungroup() %>%
rename(group = class) %>%
mutate_at(vars(-group), rescale)
Error in is_fun_list(.funs) : object 'rescale' not found
In addition: There were 11 warnings (use warnings() to see them)
The text was updated successfully, but these errors were encountered: