Machine Learning - Save Variable(s) - Probabilities of Each Response

From Q
Jump to navigation Jump to search

Create new variables containing predicted probabilities of each response from a machine learning model or ensemble

Creates new variables containing predicted probabilities of each response from a machine learningmachine learning model or ensembleensemble.

Example

A table of probabilities of a binary outcome variable.

Technical details

Uses the Probabilities method from the R package flipData. Unlike the defaults in most R packages, this implementation assigns probabilities for observations not in the estimation sample.

Code

includeWeb("QScript R Output Functions");

main();
 
function main() {
    saveVariables("Probabilities", "Machine Learning, MachineLearningEnsemble or Regression", 
    "flipData::Probabilities(", ")", null, null, "prob", ["MachineLearning", "MachineLearningEnsemble", "Regression"]);
}