Skip to contents

Groups and counts orders of the dataset by their city

Usage

count_orders_city(df, city = city)

Arguments

df

A dataframe of Delivraide orders

city

The column for city name (default: city). Note: do not add quotes around the column name.

Value

A dataframe with the number of orders for each department.

Examples

#' # Load the sample orders data
data(sample_orders_data)

# Group and count orders per department
dpt_orders <- count_orders_city(sample_orders_data)
#> Error in mutate(summarise(group_by(df, city), city_orders = n()), perc = scales::percent(city_orders/sum(city_orders),     accuracy = 0.1, trim = FALSE)):  In argument: `perc = scales::percent(...)`.
#> Caused by error in `loadNamespace()`:
#> ! there is no package called ‘scales’