
A version of dplyr::summarise() function for datasets on metric graphs
Source: R/util.R
summarise.metric_graph_data.RdCreates summaries, while keeps the spatial positions.
Usage
# S3 method for class 'metric_graph_data'
summarise(.data, ..., .include_graph_groups = FALSE, .groups = NULL)Arguments
- .data
The data list or
tidyr::tibbleobtained from a metric graph object.- ...
Additional parameters to be passed to
dplyr::summarise().- .include_graph_groups
Should the internal graph groups be included in the grouping variables? The default is
FALSE. This means that, when summarising, the data will be grouped by the internal group variable together with the spatial locations.- .groups
A vector of strings containing the names of the columns to be additionally grouped, when computing the summaries. The default is
NULL.
Value
A tidyr::tibble with the resulting selected columns.