README.md

stopwatch

The goal of stopwatch is to make executing long running code a better experience. Long running code can seriously hurt productivity, because your concentration is often brokne when you are waiting for an expression to finish evaluating. stopwatch will give you an idea of how long

Installation

stopwatch is not on CRAN. You can install stopwatch from GitHub with:

remotes::install_github('JamesM131/stopwatch')

Example

Loading the stopwatch package will automatically override the default variable assignment. The new assignment operator will start a timer in the console that will count upwards while code is executing, and will run beepr::beep() when the execution has finished if it took longer than 3 seconds.

library(stopwatch)

A stopwatch timer can also be created directly, which is useful if the long running code is not being assigned to a variable. This is done like so:

start_timer()
stop_timer()

Notes



JamesM131/stopwatch documentation built on Dec. 18, 2021, 12:31 a.m.