Skip to content

Commit

Permalink
version bump plus documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
topepo committed May 6, 2020
1 parent e4996eb commit f4d2221
Show file tree
Hide file tree
Showing 86 changed files with 4,824 additions and 4,235 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: parsnip
Version: 0.1.0.9001
Version: 0.1.1
Title: A Common API to Modeling and Analysis Functions
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).
Authors@R: c(
Expand Down
1,108 changes: 646 additions & 462 deletions README.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ The goals of parsnip are to:
the implementation is in R, spark, or something else). For example,
the user would call `rand_forest` instead of `ranger::ranger` or
other specific packages.
- Harmonize argument names (e.g. `n.trees`, `ntrees`, `trees`) so that
- Harmonize argument names (e.g. `n.trees`, `ntrees`, `trees`) so that
users only need to remember a single name. This will help *across*
model types too so that `trees` will be the same argument across
random forest as well as boosting or bagging.
Expand Down Expand Up @@ -141,7 +141,7 @@ rand_forest(mtry = 10, trees = 2000) %>%
fit(mpg ~ ., data = mtcars)
#> parsnip model object
#>
#> Fit time: 81ms
#> Fit time: 75ms
#> Ranger result
#>
#> Call:
Expand All @@ -155,8 +155,8 @@ rand_forest(mtry = 10, trees = 2000) %>%
#> Target node size: 5
#> Variable importance mode: impurity
#> Splitrule: variance
#> OOB prediction error (MSE): 5.947154
#> R squared (OOB): 0.8362753
#> OOB prediction error (MSE): 5.779248
#> R squared (OOB): 0.8408977
```

A list of all `parsnip` models across different CRAN packages can be
Expand Down
24 changes: 18 additions & 6 deletions docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

255 changes: 255 additions & 0 deletions docs/CODE_OF_CONDUCT.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added docs/apple-touch-icon-120x120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/apple-touch-icon-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/apple-touch-icon-180x180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/apple-touch-icon-60x60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/apple-touch-icon-76x76.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit f4d2221

Please sign in to comment.