reports_summary.Rd
Summary report
reports_summary(start, end, extra_args = list())
Start time
End time
Extra arguments to be passed to the
API.
Example: extra_args = list(rounding = TRUE)
.
A data frame with summarised time entries for the specified time period.
if (FALSE) {
report <- reports_summary("2022-08-01", "2022-09-01")
# Summary per user.
report
# Summary per client/project.
report %>%
select(-duration, -amount, -amounts) %>%
unnest(projects)
# Summary per time entry.
report %>%
select(-duration, -amount, -amounts) %>%
unnest(projects) %>%
select(-duration, -amount) %>%
unnest(entries)
}