probably 0.1.0
Max Kuhn is now the maintainer (#49).
Re-licensed package from GPL-2 to MIT. All copyright holders are RStudio employees and give consent.
Fixed a bug with how
make_class_pred()
andmake_two_class_pred()
validate thelevels
argument (#42).threshold_perf()
now has an explicitevent_level
argument rather than respecting the now deprecatedyardstick.event_first
global option (#45).Bumped the minimum required R version to >=3.4.0 to align with the rest of the tidyverse.
Updated to testthat 3e (#44).
probably 0.0.6
CRAN release: 2020-06-05
-
class_pred
objects are now comparable and will be ordered by their levels. Equivocal values are generally considered to be the smallest value when ordering.NA
values can be considered smaller ifvec_order(na_value = "smallest")
is used.
probably 0.0.4
CRAN release: 2020-01-13
Suggest the modeldata package, which is where the
lending_club
dataset has been moved after being removed from recipes.Use
testthat::verify_output()
on a test expecting a specific vctrs error to avoid failure on CRAN if that error changes in the future.
probably 0.0.3
CRAN release: 2019-07-07
probably has been brought up to date with vctrs 0.2.0. This vctrs update had many function name changes, and required internal refactoring, but there should be minimal external changes.
-
The one user facing change comes with casting from one
class_pred
object to anotherclass_pred
, or to afactor
. Where previously a warning would be thrown ifx
had levels that did not exist into
, an error is now generated. This is consistent with the vctrs behavior when converting from one factor to another.x <- class_pred(factor("a")) to <- class_pred(factor("to")) vec_cast(x, to) #> Error: Lossy cast from <class_pred> to <class_pred>. #> Locations: 1
probably 0.0.2
CRAN release: 2019-03-07
Bug fixes
A failing test relying on the R 3.6 change to
sample()
has been corrected.An rlang warning in
threshold_perf()
has been fixed.A small R 3.1 issue with vctrs has been fixed.