-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathREADME.Rmd
More file actions
54 lines (34 loc) · 1.9 KB
/
README.Rmd
File metadata and controls
54 lines (34 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# learningCurve
**Author:** [Brad Boehmke](http://bradleyboehmke.github.io/) & [Jason Freels](https://github.com/Auburngrads)<br/>
**License:** [GPL-3.0](https://opensource.org/licenses/GPL-3.0)
[](https://cran.r-project.org/package=learningCurve)
[](https://travis-ci.org/AFIT-R/learningCurve)
[](https://codecov.io/gh/bradleyboehmke/learningCurve)
[](https://zenodo.org/badge/latestdoi/60852792)
`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.