-
Notifications
You must be signed in to change notification settings - Fork 106
Quosure passthrough #98
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
Conversation
…descr_spark() helpers.
Quosure passthrough davis
quosure updates
… place rather than in a child env.
…pace is not required (and did not work anyways)
… spec testing to the check_args() generic.
Quosured argument changes
descriptor, documentation, and travis changes
…/parsnip into quosure-passthrough-tests
Codecov Report
@@ Coverage Diff @@
## master #98 +/- ##
=========================================
- Coverage 74.43% 71.9% -2.54%
=========================================
Files 30 31 +1
Lines 1991 2235 +244
=========================================
+ Hits 1482 1607 +125
- Misses 509 628 +119
Continue to review full report at Codecov.
|
|
This pull request has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue. |
removed
othersargarguments now captured using quosures
Tests are updated for the new approach of capturing arguments as quosures as well as the removal of
others().Instead of creating a new, clean environment, we go back to creating a child of the current environment. The clean environment had issues with some packages not importing (or calling by namespace) functions from
statssuch asmodel.frame.Fixed
glmnetprediction issues. The predict method formodel_fituses the model specification to get thelambdato predictive with. In this branch, all arguments are quosures so this fails. Theglmnet-specific predict method evaluate the specification arguments before predicting.varying_args()now works for complex arguments such assampsize = c(12, varying()).Model wrappers for C5.0, keras, and xgboost are documented.
quantiles added as a prediction type
updated survival models
fixed spark column name nonsense
changed descriptor names
major documentation updates
travis build config changes