knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

timesheet

The goal of timesheet is to make keeping track of working hours easier.

Installation

You can install the development version of timesheet from GitHub with:

# install.packages("devtools")
devtools::install_github("max607/timesheet")

Example

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)


max607/timesheet documentation built on July 22, 2024, 4:10 p.m.