knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
The goal of timesheet is to make keeping track of working hours easier.
You can install the development version of timesheet from GitHub with:
# install.packages("devtools") devtools::install_github("max607/timesheet")
This is a basic example which shows you how to solve a common problem:
library(timesheet) timesheet <- add_entry("2021-11-04 12:30:00", "2021-11-04 13:30:00", "Eating in office hours") timesheet <- add_entry("2021-12-04 13:30:00", "2021-12-04 16:30:00", "Powernap", timesheet) time_total(timesheet) time_month(timesheet, month = 11) time_month(timesheet, month = 12, work_left = TRUE, hours_per_month = 39) overview(timesheet)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.