Get summary statistics for run

summariseRun(run = stuggi_running)

Arguments

run

a run data frame returned by import_run.

Value

A list with summary statistics.

total_duration

Total duration as Formal Duration class

total_duration_seconds

Total duration in seconds

total_duration_hours

Total duration in hours

average_speed_kph

Average speed in kilometers per hour

total_distance

The total distance in kilometers

Examples

data(stuggi_running) summariseRun(run = stuggi_running)
#> $total_duration #> [1] "3499s (~58.32 minutes)" #> #> $total_duration_seconds #> [1] 3499 #> #> $total_duration_hours #> [1] 0.9719444 #> #> $average_speed_kph #> [1] 10.83672 #> #> $total_distance #> [1] 10.53269 #>