Changelog
Source:NEWS.md
themis (development version)
Calling
?tidy.step_*()
now sends you to the documentation forstep_*()
where the outcome is documented. (#142)Documentation now correctly specifies majority-to-minority and minority-to-majority. (#143, #110)
Documentation for tidy methods for all steps has been improved to describe the return value more accurately. (#148)
themis 1.0.1
CRAN release: 2023-04-14
Improvements
Fixed bug where some upsampling functions would error if no upsampling was needed. (#119)
Steps with tunable arguments now have those arguments listed in the documentation.
themis 1.0.0
CRAN release: 2022-07-02
- Added case weights support for
step_upsample()
andstep_downsample()
themis 0.2.2
CRAN release: 2022-05-11
-
tomek()
has been added, rewritten to apply to multiple classes, removing the need for the unbalanced package, which has been removed as a dependency.
themis 0.2.1
CRAN release: 2022-04-13
- A bug was fixed in
step_downsample()
andstep_upsample()
that made the steps unable to be tuned. (#90)
themis 0.2.0
CRAN release: 2022-03-30
New steps
-
step_smotenc()
have been added to implement SMOTENC which can handle categorical as well as numerical values. Thanks to @RobertGregg (#82)
Improvements and Other Changes
- export
nearmiss()
functions to users. - Update examples to no longer use
iris
orokc
data sets. - All recipe steps now officially support empty selections to be more aligned with dplyr and other packages that use tidyselect (#55)
Bug fixes
-
step_rose()
now correctly allows you to use characters variables. (#26) -
step_tomek()
now ignore non-predictor variables when appropriate. (#51) - Fix bug where wrong ordering of columns caused error in
smote()
. (#76)
themis 0.1.1
CRAN release: 2020-05-17
-
step_smote()
now work regardless of order of classes. Thanks to @sebastien-foulle for point it out #14.