Author: Brad Boehmke & Jason Freels
License: GPL-3.0

CRAN_Status_Badge Travis-CI Build Status

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.

Installation

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")

Learning

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.