Skip to content

Commit 410709f

Browse files
authored
Merge pull request #535 from tidymodels/0-1-7-RC
0.1.7 release candidate
2 parents 70d0cf8 + d8a0352 commit 410709f

36 files changed

+155
-31
lines changed

DESCRIPTION

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: parsnip
22
Title: A Common API to Modeling and Analysis Functions
3-
Version: 0.1.6.9000
3+
Version: 0.1.7
44
Authors@R:
55
c(person(given = "Max",
66
family = "Kuhn",
@@ -45,7 +45,7 @@ Imports:
4545
Suggests:
4646
C50,
4747
covr,
48-
dials (>= 0.0.9.9000),
48+
dials,
4949
earth,
5050
keras,
5151
kernlab,
@@ -67,8 +67,6 @@ Suggests:
6767
xgboost
6868
VignetteBuilder:
6969
knitr
70-
Remotes:
71-
tidymodels/dials
7270
ByteCompile: true
7371
Config/Needs/website:C50, earth, glmnet, keras, kernlab, kknn, LiblineaR,
7472
mgcv, nnet, parsnip, randomForest, ranger, rpart, rstanarm, tidymodels,

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# parsnip (development version)
1+
# parsnip 0.1.7
22

33
## Model Specification Changes
44

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -79,19 +79,19 @@ between implementations.
7979

8080
In this example:
8181

82-
- the **type** of model is “random forest”,
83-
- the **mode** of the model is “regression” (as opposed to
82+
- the **type** of model is “random forest”,
83+
- the **mode** of the model is “regression” (as opposed to
8484
classification, etc), and
85-
- the computational **engine** is the name of the R package.
85+
- the computational **engine** is the name of the R package.
8686

8787
The goals of parsnip are to:
8888

89-
- Separate the definition of a model from its evaluation.
90-
- Decouple the model specification from the implementation (whether
89+
- Separate the definition of a model from its evaluation.
90+
- Decouple the model specification from the implementation (whether
9191
the implementation is in R, spark, or something else). For example,
9292
the user would call `rand_forest` instead of `ranger::ranger` or
9393
other specific packages.
94-
- Harmonize argument names (e.g. `n.trees`, `ntrees`, `trees`) so that
94+
- Harmonize argument names (e.g. `n.trees`, `ntrees`, `trees`) so that
9595
users only need to remember a single name. This will help *across*
9696
model types too so that `trees` will be the same argument across
9797
random forest as well as boosting or bagging.
@@ -142,7 +142,7 @@ rand_forest(mtry = 10, trees = 2000) %>%
142142
fit(mpg ~ ., data = mtcars)
143143
#> parsnip model object
144144
#>
145-
#> Fit time: 71ms
145+
#> Fit time: 73ms
146146
#> Ranger result
147147
#>
148148
#> Call:
@@ -172,18 +172,18 @@ This project is released with a [Contributor Code of
172172
Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html).
173173
By contributing to this project, you agree to abide by its terms.
174174

175-
- For questions and discussions about tidymodels packages, modeling,
175+
- For questions and discussions about tidymodels packages, modeling,
176176
and machine learning, please [post on RStudio
177177
Community](https://community.rstudio.com/new-topic?category_id=15&tags=tidymodels,question).
178178

179-
- If you think you have encountered a bug, please [submit an
179+
- If you think you have encountered a bug, please [submit an
180180
issue](https://github.com/tidymodels/parsnip/issues).
181181

182-
- Either way, learn how to create and share a
182+
- Either way, learn how to create and share a
183183
[reprex](https://reprex.tidyverse.org/articles/articles/learn-reprex.html)
184184
(a minimal, reproducible example), to clearly communicate about your
185185
code.
186186

187-
- Check out further details on [contributing guidelines for tidymodels
187+
- Check out further details on [contributing guidelines for tidymodels
188188
packages](https://www.tidymodels.org/contribute/) and [how to get
189189
help](https://www.tidymodels.org/help/).

man-roxygen/spec-references.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#' @references \url{https://www.tidymodels.org}, [_Tidy Models with R_](https://tmwr.org)
1+
#' @references \url{https://www.tidymodels.org}, [_Tidy Models with R_](https://www.tmwr.org/)

man/boost_tree.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/decision_tree.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/details_boost_tree_C5.0.Rd

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/details_boost_tree_xgboost.Rd

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/details_decision_tree_C5.0.Rd

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/details_decision_tree_rpart.Rd

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)