-
Notifications
You must be signed in to change notification settings - Fork 93
Revised model documentation #456
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 4 commits
Commits
Show all changes
85 commits
Select commit
Hold shift + click to select a range
1e7f84c
re-organize linear_reg documentation
topepo 509836c
search across parsnip adjacent packages for details files
topepo 524cd49
added stan details
topepo 7416ab3
Made clickable link for lm()
juliasilge 0999884
Move some details down to highlight most important stuff
juliasilge 4599543
Typo
juliasilge 0a0326b
Spacing
juliasilge f1db675
Edits to wording for clarity
juliasilge 2d424a2
doc refresh
topepo 18201e9
extended glmnet documentation
topepo 6dc73cc
Update man/rmd/glmnet-details.Rmd
topepo 87e236a
Update R/linear_reg.R
topepo d98cbbd
Update R/aaa_models.R
topepo 35b423a
better documentation based on review comments
topepo 9a3aa27
Merge branch 'doc-test' of https://github.com/tidymodels/parsnip into…
topepo 826b24b
move to underscore in file names
topepo 9e6b912
use linked verions of function names
topepo bcbd1a5
more information on additional engines and tidymodels.org
topepo 3db440c
expand the package exclusion list
topepo efe0e94
added boosted tree docs
topepo 07d2bb8
reworked the parameter code to use tunable
topepo d8a3f69
early_stop re-added (required devel dials)
topepo f97d3db
Merge branch 'master' into doc-test
topepo d9f2543
minor linear_reg updates and use of templates
topepo f5868f8
Update man/rmd/glmnet-details.Rmd
topepo 0b76e6c
Update man/rmd/glmnet-details.Rmd
topepo 35707e7
update boosting pages
topepo 2737fdb
better seeaslo and references
topepo 777775c
decision_tree files
topepo ff89d99
fix failing test case
topepo 3001f2e
logistic_reg files
topepo 8c99d7d
mars files
topepo 94d2e6f
mlp files
topepo 749c270
multinomial files
topepo 76df18c
fix some file names
topepo e625de4
un-needed files
topepo cf3730e
knn files
topepo 958ecf8
rand_forest files
topepo 8d79f7c
svm files
topepo 2446b8f
cleaned up titles (no more "general interfaces")
topepo e336761
standardize on "specific engines only"
topepo 09bb004
remove "Parameters can be represented by a placeholder" in examples
topepo 13270a6
Update man/rmd/glmnet-details.Rmd
topepo cb36eaf
Update man/rmd/glmnet-details.Rmd
topepo e95a769
suggestions from Hannah
topepo 62c5055
fixed a few bugs/typos
topepo 66bff6b
bug fix
topepo a9efa89
dynamic @seealso
topepo a0a683b
added an overview of dynamic documentation bits.
topepo eea10fe
updated glmnet information
topepo 83120fc
small doc updates for glmnet
topepo 02e6561
Update NEWS.md
topepo de4a64d
prototype sections for worked examples
topepo 600c23b
fix train.test indices
topepo b710818
more roxygenization
topepo 0e35b38
added man-roxygen to build ignore
topepo bd45773
mode for null model
topepo d238ec2
examples for rand_forest() with engines ranger and randomForest
hfrick e5e0ee1
examples for svm_linear() with engines kernlab and LiblineaR
hfrick 17c8722
set seed for reproducibility
hfrick d59fbc5
examples for `svm_poly()` and `svm_rbf()`
hfrick ce75f08
clean-up
hfrick 4eb4130
add sentence about model spec
hfrick 84e1926
add example for `multinom_reg()` with penguins
hfrick ed5938c
Need this for `devtools::document()` now
juliasilge 105c74d
Edits to doc tools
juliasilge 1d9e44c
Refine boosted tree docs
juliasilge 698e914
Refine decision_tree() docs
juliasilge bf01bb4
Refine linear/logistic docs
juliasilge 8ef2142
Refine mars, mlp, multinom (plus logistic again)
juliasilge 88dc6b8
Finish refining model pages
juliasilge 73fc19c
Refine details pages
juliasilge 8c2c082
Finish up details pages, and document
juliasilge 338ff70
tidy up examples of class prediction
hfrick 1d3865f
Merge branch 'master' into doc-test
topepo a1b42ca
doc refresh after updating from master
topepo 695a5d6
remove examples as they slow down `document()`
hfrick 758b43f
remove another example
hfrick 1e05cb5
update tree splitting template (and its name)
topepo 112a5de
remove default engine text
topepo a5ae291
add default engine to list
topepo 14c6749
maybe fix GHA issues when new dependencies are on CRAN
topepo db98176
remove multilevelmod reference
topepo aa93434
doc refresh
topepo 8c730b3
missing comma
topepo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,4 +53,5 @@ Suggests: | |
nlme, | ||
modeldata, | ||
LiblineaR, | ||
Matrix | ||
Matrix, | ||
dials |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#' Linear regression via glmnet | ||
#' | ||
#' `glmnet()` uses regularized least squares to fit models with numeric outcomes. | ||
#' | ||
#' @includeRmd man/rmd/linear-reg-glmnet.Rmd details | ||
#' | ||
#' @name details-linear-reg-glmnet | ||
#' @keywords internal | ||
NULL | ||
topepo marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#' Linear regression via keras/tensorflow | ||
#' | ||
#' This model uses regularized least squares to fit models with numeric outcomes. | ||
#' | ||
#' @includeRmd man/rmd/linear-reg-keras.Rmd details | ||
#' | ||
#' @name details-linear-reg-keras | ||
#' @keywords internal | ||
NULL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#' Linear regression via lm | ||
#' | ||
#' [stats::lm()] uses ordinary least squares to fit models with numeric outcomes. | ||
topepo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
#' | ||
#' @includeRmd man/rmd/linear-reg-lm.Rmd details | ||
#' | ||
#' @name details-linear-reg-lm | ||
#' @keywords internal | ||
NULL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#' Linear regression via spark | ||
#' | ||
#' `sparklyr::ml_linear_regression()` uses regularized least squares to fit | ||
#' models with numeric outcomes. | ||
#' | ||
#' @includeRmd man/rmd/linear-reg-spark.Rmd details | ||
#' | ||
#' @name details-linear-reg-spark | ||
#' @keywords internal | ||
NULL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#' Linear regression via Bayesian Methods | ||
#' | ||
#' The `stan` engine estimates regression parameters using Bayesian estimation. | ||
#' | ||
#' @includeRmd man/rmd/linear-reg-stan.Rmd details | ||
#' | ||
#' @name details-linear-reg-stan | ||
#' @keywords internal | ||
NULL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.