Skip to content

Commit f4d2221

Browse files
committed
version bump plus documentation update
1 parent e4996eb commit f4d2221

File tree

86 files changed

+4824
-4235
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+4824
-4235
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.0.9001
2+
Version: 0.1.1
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(

README.html

Lines changed: 646 additions & 462 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The goals of parsnip are to:
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.
@@ -141,7 +141,7 @@ rand_forest(mtry = 10, trees = 2000) %>%
141141
fit(mpg ~ ., data = mtcars)
142142
#> parsnip model object
143143
#>
144-
#> Fit time: 81ms
144+
#> Fit time: 75ms
145145
#> Ranger result
146146
#>
147147
#> Call:
@@ -155,8 +155,8 @@ rand_forest(mtry = 10, trees = 2000) %>%
155155
#> Target node size: 5
156156
#> Variable importance mode: impurity
157157
#> Splitrule: variance
158-
#> OOB prediction error (MSE): 5.947154
159-
#> R squared (OOB): 0.8362753
158+
#> OOB prediction error (MSE): 5.779248
159+
#> R squared (OOB): 0.8408977
160160
```
161161

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

docs/404.html

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

docs/CODE_OF_CONDUCT.html

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

docs/apple-touch-icon-120x120.png

10.3 KB
Loading

docs/apple-touch-icon-152x152.png

13.4 KB
Loading

docs/apple-touch-icon-180x180.png

16.4 KB
Loading

docs/apple-touch-icon-60x60.png

4.43 KB
Loading

docs/apple-touch-icon-76x76.png

5.89 KB
Loading

docs/apple-touch-icon.png

16.4 KB
Loading

0 commit comments

Comments
 (0)