| reports_summary {clockify} | R Documentation | 
Summary report
Description
Summary report
Usage
reports_summary(start, end, extra_args = list())
Arguments
| start | Start time | 
| end | End time | 
| extra_args | Extra arguments to be passed to the
API.
Example:  | 
Value
A data frame with summarised time entries for the specified time period.
Examples
## 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)
[Package clockify version 0.1.6 Index]