Can we have more than one step data-manipulation functions? For example
data %>% group_by(age_range,
d_imp_rate_level) %>%
summarise(n_users_mean = round(mean(n_users))) %>%
ungroup() %>%
group_by(age_range) %>%
mutate(total_n_users_mean = sum(n_users_mean),
pctg_users_mean = percent(n_users_mean/total_n_users_mean, accuracy = 0.01))
The second step computation is based on the the output of step 1.
Can we have more than one step data-manipulation functions? For example
The second step computation is based on the the output of step 1.