Count orders by city
count_orders_city.Rd
Groups and counts orders of the dataset by their 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.
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’