get_tt: Get a table of tracked time within a range of dates

Description Usage Arguments Examples

Description

Get a table of tracked time (as a tbl_df object). The date range or number of days back from the present day can be specified to filter the table returned. Otherwise, all tracked time records are provided.

Usage

1
get_tt(s = NULL, e = NULL, last_n_days = NULL)

Arguments

s

minimum day for which tasks are to be collected. Date must be in ISO format: YYYY-MM-DD.

e

maximum day for which tasks are to be collected. Date must be in ISO format: YYYY-MM-DD.

last_n_days

a number of days back from the current day for which tasks are to be collected.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run: 
# Show all tracked tasks as a tibble
get_tt()
#> A tibble: 3 x 8
#>   task                    s_d        s_t   e_d    e_t   lbl   proj   info
#>   <chr>                   <chr>      <chr> <chr>  <chr> <chr> <chr>  <chr>
#> 1 Description of the task 2018-05-24 11:30 2018-… 12:00 label proje… Any a…
#> 2 Description of the task 2018-05-24 12:00 2018-… 12:30 label proje… Any a…
#> 3 Description of the task 2018-05-24 12:30 2018-… 13:00 label proje… Any a…

## End(Not run)

rich-iannone/ttt documentation built on May 28, 2019, 9:51 a.m.