Skip to content

Add multi-step define/add funcs #47

Description

@yl3394

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions