You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* initial case weight work for xy models
* make the env arg of eval_tidy more explicit
* conversion of weights class to some numeric type
* changes for formula call formation
* check to see if the model can use case weights
* change envir vector name to weights
* update model defs for non-standard case weight arg names
* could it possibly be this easy?
* better approach to handling model.frame() issues in lm()
* no case weights for LiblinearR (they are class weights)
* add and update unit tests
* version updates and remotes
* Apply suggestions from code review
Co-authored-by: Davis Vaughan <davis@rstudio.com>
* function for grouped binomial data
* changes based on reviewer feedback
* re-export hardhat functions
* changes based on reviewer feedback
* test non-standard argument names
* temp bypass for r-devel
* pass case weights to xgboost
* update tests for xgboost/boost_tree args
* add case weight summary to show_model_info()
* added glm_grouped to pkgdown
* more unit tests
* spark support for case weights
* updates to documentation for case weights
* add missing topic
* more engine doc updates
* added more notes in engine docs
* added more notes in engine docs
* gam weights
* doc update
* revert nnet case weights
* S3 method to convert hardhat format to numeric
* Ensure that `fit_xy()` patches the formula environment with weights (#705)
* Prefix everywhere we use `new_quosure()` or `empty_env()`
We don't import these, so we have to do this. Tests were only working by chance because we have `library(rlang)` in some of the test files!
* Ensure that `fit_xy()` patches the formula environment with weights
* missing roxygen tag
* avoid deprecated tests
Co-authored-by: Max Kuhn <mxkuhn@gmail.com>
* updated for latest roxygen2
* get xgb to stop being so chatty
* update snapshots
* doc update
* missing doc entry
* remove convert_case_weights
Co-authored-by: Davis Vaughan <davis@rstudio.com>
Copy file name to clipboardExpand all lines: NEWS.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,12 @@
1
1
# parsnip (development version)
2
2
3
+
4
+
* Enable the use of case weights for models that support them.
5
+
6
+
* Added a `glm_grouped()` function to convert long data to the grouped format required by `glm()` for logistic regression.
7
+
8
+
*`show_model_info()` now indicates which models can utilize case weights.
9
+
3
10
*`xgb_train()` now allows for case weights
4
11
5
12
* Added `ctree_train()` and `cforest_train()` wrappers for the functions in the partykit package. Engines for these will be added to other parsnip extension packages.
@@ -14,6 +21,7 @@
14
21
15
22
* Model type functions will now message informatively if a needed parsnip extension package is not loaded (#731).
16
23
24
+
17
25
# parsnip 0.2.1
18
26
19
27
* Fixed a major bug in spark models induced in the previous version (#671).
0 commit comments