
Summary statistics of trips arriving at destination zones in OD data
Source:R/od-funs.R
od_aggregate_to.RdThis function takes a data frame of OD data and returns a data frame reporting summary statistics for each unique zone of destination.
Arguments
- flow
A data frame representing origin-destination data. The first two columns of this data frame should correspond to the first column of the data in the zones. Thus in
cents_sf(), the first column is geo_code. This corresponds to the first two columns offlow().- attrib
character, column names in sl to be aggregated
- FUN
A function to summarise OD data by
- ...
Additional arguments passed to
FUN- col
The column that the OD dataset is grouped by (1 by default, the first column usually represents the origin)
Details
It has some default settings: it assumes the destination ID column is the 2nd
and the default summary statistic is sum().
By default, if attrib is not set, it summarises all numeric columns.
See also
Other od:
od2line(),
od2odf(),
od_aggregate_from(),
od_coords(),
od_coords2line(),
od_id,
od_id_order(),
od_oneway(),
od_to_odmatrix(),
odmatrix_to_od(),
points2flow(),
points2odf()
Examples
od_aggregate_to(flow)
#> # A tibble: 7 × 13
#> Area.of.workplace All Work.mainly.at.or.from.…¹ Underground..metro..…² Train
#> <chr> <int> <int> <int> <int>
#> 1 E02002361 207 0 0 0
#> 2 E02002363 467 0 0 5
#> 3 E02002367 115 0 0 1
#> 4 E02002371 539 0 0 2
#> 5 E02002377 324 0 0 0
#> 6 E02002382 209 0 1 0
#> 7 E02002393 955 0 0 4
#> # ℹ abbreviated names: ¹Work.mainly.at.or.from.home,
#> # ²Underground..metro..light.rail..tram
#> # ℹ 8 more variables: Bus..minibus.or.coach <int>, Taxi <int>,
#> # Motorcycle..scooter.or.moped <int>, Driving.a.car.or.van <int>,
#> # Passenger.in.a.car.or.van <int>, Bicycle <int>, On.foot <int>,
#> # Other.method.of.travel.to.work <int>