Skip to content

Commit a7bb91e

Browse files
committed
version bump and new md readme
1 parent 0d80715 commit a7bb91e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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.1.1.9000
2+
Version: 0.1.2
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# parsnip (development version)
1+
# parsnip 0.1.2
22

33
## Breaking Changes
44

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ rand_forest(mtry = 10, trees = 2000) %>%
144144
#> Ranger result
145145
#>
146146
#> Call:
147-
#> ranger::ranger(formula = formula, data = data, mtry = ~10, num.trees = ~2000, importance = ~"impurity", num.threads = 1, verbose = FALSE, seed = sample.int(10^5, 1))
147+
#> ranger::ranger(formula = mpg ~ ., data = data, mtry = ~10, num.trees = ~2000, importance = ~"impurity", num.threads = 1, verbose = FALSE, seed = sample.int(10^5, 1))
148148
#>
149149
#> Type: Regression
150150
#> Number of trees: 2000
@@ -154,8 +154,8 @@ rand_forest(mtry = 10, trees = 2000) %>%
154154
#> Target node size: 5
155155
#> Variable importance mode: impurity
156156
#> Splitrule: variance
157-
#> OOB prediction error (MSE): 5.911312
158-
#> R squared (OOB): 0.837262
157+
#> OOB prediction error (MSE): 5.699772
158+
#> R squared (OOB): 0.8430857
159159
```
160160

161161
A list of all `parsnip` models across different CRAN packages can be

0 commit comments

Comments
 (0)