Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7208825

Browse files
committedNov 1, 2019
version bump and clean up news file
1 parent 8d2d9ba commit 7208825

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed
 

‎DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: parsnip
2-
Version: 0.0.3.9002
2+
Version: 0.0.4
33
Title: A Common API to Modeling and Analysis Functions
44
Description: A common interface is provided to allow users to specify a model without having to remember the different argument names across different functions or computational engines (e.g. 'R', 'Spark', 'Stan', etc).
55
Authors@R: c(

‎NEWS.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
1-
# parsnip 0.0.3.9001
1+
# parsnip 0.0.4
22

33
## New Features
44

5-
* The time elapsed during model fitting is stored in the `$elapsed` slot of the
6-
parsnip model object, and is printed when the model object is printed.
5+
* The time elapsed during model fitting is stored in the `$elapsed` slot of the parsnip model object, and is printed when the model object is printed.
76

87
* Some default parameter ranges were updated for SVM, KNN, and MARS models.
98

9+
* The model `udpate()` methods gained a `parameters` argument for cases when the parameters are contained in a tibble or list.
10+
11+
* `fit_control()` is soft-deprecated in favor of `control_parsnip()`.
12+
1013
## Fixes
11-
* [A bug](https://github.com/tidymodels/parsnip/issues/222) was fixed standardizing
12-
the output column types of `multi_predict` and `predict` for `multinom_reg`.
14+
15+
* [A bug](https://github.com/tidymodels/parsnip/issues/222) was fixed standardizing the output column types of `multi_predict` and `predict` for `multinom_reg`.
1316

1417
* [A bug](https://github.com/tidymodels/parsnip/issues/208) was fixed related to using data descriptors and `fit_xy()`.
1518

1619
* A bug was fixed related to the column names generated by `multi_predict()`. The top-level tibble will always have a column named `.pred` and this list column contains tibbles across sub-models. The column names for these sub-model tibbles will have names consistent with `predict()` (which was previously incorrect). See [43c15db](https://github.com/tidymodels/parsnip/commit/43c15db377ea9ef27483ff209f6bd0e98cb830d2).
1720

18-
* The model `udpate()` methods gained a `parameters` argument for cases when the parameters are contained in a tibble or list.
19-
2021
* [A bug](https://github.com/tidymodels/parsnip/issues/174) was fixed standardizing the column names of `nnet` class probability predictions.
2122

2223

0 commit comments

Comments
 (0)
Please sign in to comment.