reports_summary {clockify} | R Documentation |
Summary report
reports_summary(start, end, extra_args = list())
start |
Start time |
end |
End time |
extra_args |
Extra arguments to be passed to the
API.
Example: |
A data frame with summarised time entries for the specified time period.
## Not run:
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)
## End(Not run)