Skip to contents

KAscore 1.2.1

  • Added test coverage for previously-untested edge cases in bin_quantile() (missing-value handling, min_value/max_value clamping, non-unique quantile breaks), predict.scorecard() (invalid newdata/type arguments, default type messaging), and summary.scorecard()/print.scorecard() (previously entirely untested summary() method, and the class-validation guard clauses)
  • Fixed the “no visible binding for global variable” R CMD check NOTEs arising from tidy-eval column references inside dplyr/tidyr pipelines, and from crayon calls embedded inside cli glue strings, by declaring rlang::.data as an import and adding utils::globalVariables() for the remaining NSE column names (see R/globals.R)
  • Migrated the Deployment article’s R API client example from {httr} to {httr2}
  • Re-built vignettes/articles and the pkgdown site with the current CRAN release of {pkgdown}
  • Formatted the entire project with Air

KAscore 1.2.0

  • Introduced new scorecard() function to create a scorecard model object of class scorecard
    • Introduced predict() method for scorecard class objects, which can return either total points scored or glm class probabilities
    • Also introduced print() and summary() methods for scorecard class objects

Documentation

  • Added Deployment article
  • Revised Build a Scorecard vignette to leverage new scorecard() and predict() functionality

Technical Changes

  • The creation of the scorecard class introduced one new dependency, {stringr}, which is in “Imports” section of DESCRIPTION

KAscore 1.1.1

Bug Fix

  • Fixed bug in psi() function where score ranges containing “-Inf” or “Inf” were throwing an error

KAscore 1.1.0

New functions

There are two new functions for monitoring a scorecard:

  • psi() calculates the Population Stability Index
  • cai() calculates the Characteristic Analysis Index

New vignette

  • Added Ongoing Monitoring vignette

Technical Changes

  • The creation of the Ongoing Monitoring vignette introduced two new dependencies, which are in “Suggests” section of DESCRIPTION: {scales} and {ggplot2}

KAscore 1.0.2

  • Fixed bug in iv() function where outcome factor levels were not treated consistently with woe()

KAscore 1.0.1

  • Added missing dependencies {crayon} and {rstudioapi} needed for verbose = TRUE methods in woe() and iv()
  • Extracted examples in README into four vignettes

KAscore 1.0.0

  • This is the first release of the {KAscore} package