Skip to content

Commit

Permalink
removed tidyverse as a dependency and added specific packages. Helps …
Browse files Browse the repository at this point in the history
…minimize dependencies.
  • Loading branch information
bradleyboehmke committed Mar 30, 2018
1 parent 777fd14 commit b295044
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
@@ -1,14 +1,14 @@
Package: learningCurve
Type: Package
Title: An Implementation of Crawford's and Wright's Learning Curve Production Functions
Version: 1.1.1
Version: 1.1.2
Description: 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.
Date: 2017-02-28
Date: 2018-03-30
Authors@R: c(
person("Bradley", "Boehmke", email = "bradleyboehmke@gmail.com", role = c("aut", "cre")),
person("Jason", "Freels", email = "auburngrads@live.com", role = c("aut"))
Expand All @@ -22,7 +22,7 @@ Depends: R (>= 2.10)
Imports: ggplot2,
scales,
gridExtra,
tidyverse
tibble
RoxygenNote: 6.0.1
Suggests: knitr,
rmarkdown,
Expand Down
9 changes: 3 additions & 6 deletions cran-comments.md
@@ -1,21 +1,18 @@
## Resubmission
This is a resubmission. In this version I have:

* Added a vignette
* Changed certain function warnings to be messages
* Integrated testing
* removed tidyverse as a dependency


## Test environment
* Tested on local OS X install, R 3.3.2
* Tested on local OS X install, R 3.4.4
* ubuntu 12.04.5 (on travis-ci), R 3.3.2
* win-builder (devel and release)


## R CMD check results
0 errors | 0 warnings | 1 note
0 errors | 0 warnings | 0 note

R Under development (unstable) (2017-03-01 r72295)


## Downstream dependencies
Expand Down
3 changes: 2 additions & 1 deletion vignettes/learningCurve.Rmd
Expand Up @@ -115,7 +115,8 @@ To put these functions into action we load the `learningCurve` package along wit

```{r, message=FALSE, warning=FALSE}
library(learningCurve)
library(tidyverse)
library(tibble)
library(ggplot2)
```

To use the unit_curve function we need to supply it with the following arguments:
Expand Down

0 comments on commit b295044

Please sign in to comment.