Skip to content

Commit 19eac45

Browse files
committed
version and doc update
1 parent 53722db commit 19eac45

File tree

3 files changed

+4
-4
lines changed

3 files changed

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

33
* `show_engines()` will provide information on the current set for a model.
44

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,11 @@ rand_forest(mtry = 10, trees = 2000) %>%
141141
fit(mpg ~ ., data = mtcars)
142142
#> parsnip model object
143143
#>
144-
#> Fit time: 98ms
144+
#> Fit time: 71ms
145145
#> Ranger result
146146
#>
147147
#> Call:
148-
#> ranger::ranger(formula = mpg ~ ., data = data, mtry = ~10, num.trees = ~2000, importance = ~"impurity", num.threads = 1, verbose = FALSE, seed = sample.int(10^5, 1))
148+
#> ranger::ranger(x = maybe_data_frame(x), y = y, mtry = min_cols(~10, x), num.trees = ~2000, importance = ~"impurity", num.threads = 1, verbose = FALSE, seed = sample.int(10^5, 1))
149149
#>
150150
#> Type: Regression
151151
#> Number of trees: 2000

0 commit comments

Comments
 (0)