Author: Brad Boehmke & Jason Freels
License: GPL-3.0
learningCurve
is an R package implements common learning curve production functions. It incorporates Crawford's and Wright's learning curve functions to compute unit and cumulative block estimates for time (or cost) of units along with an aggregate learning curve. It also provides delta and error functions and some basic learning curve plotting functions.along with functions to compute aggregated learning curves, error rates, and to visualize learning curves.
You can install learningCurve
two ways.
- Using the latest released version from CRAN:
install.packages("learningCurve")
- Using the latest development version from GitHub:
if (packageVersion("devtools") < 1.6) {
install.packages("devtools")
}
devtools::install_github("Auburngrads/learningCurve")
To get started with learningCurve
, read the intro vignette: vignette("learningCurve", package = "learningCurve")
. This will provide a thorough introduction to the functions provided in the package.