The goal of LogisticEnsembles is to perform a complete analysis of logistic data. The package automatically returns 24 models (13 individual models and 11 ensembles of models)
You can install the development version of LogisticEnsembles like so:
devtools::install_github("InfiniteCuriosity/LogisticEnsembles")This is a basic example which shows you how to solve a common problem:
library(LogisticEnsembles)
start_time <- Sys.time()
Logistic(data = Diabetes,
colnum = 9,
numresamples = 10,
remove_VIF_greater_than <- 5.00,
save_all_trained_models = "N",
save_all_plots = "N",
set_seed = "N",
how_to_handle_strings = 1,
do_you_have_new_data = "N",
remove_data_correlations_greater_than = 1.00,
remove_ensemble_correlations_greater_than = 0.99,
stratified_column_number = 0,
use_parallel = "Y",
train_amount = 0.50,
test_amount = 0.25,
validation_amount = 0.25)
end_time <- Sys.time()
duration <- end_time - start_time
duration
warnings()LogisticEnsembles only requires the code seen above, and it automatically builds 18 logistic models from the data.
Each of the 18 models fits the data to the training set, then make predictions and measure accuracy on the test and validation sets. It does this by converting the predictions using the logistic function in the stats package, as follows:
gam is used in this example, but the process is identical for all 18 logistic models:
-
Build the model on the training data gam_train_fit <- gam::gam(y ~ ., data = train)
-
Use the model to make predictions on new data gam_train_pred <- stats::predict(gam_train_fit, train01, type = "response")
-
Convert predicted values to logistic using the plogis function (commonly called the 'inverse logit' function. This transforms real numbers into probabilities between 0 and 1) gam_train_predictions <- as.numeric(plogis(gam_train_pred))
-
Covert the predictions to binomial gam_train_predictions_binomial <- rbinom(n = length(gam_train_predictions), size = 1, prob = gam_train_predictions) # This converts the values to binomial
-
Create a summary table (commonly called a confusion matrix) gam_train_table <- table(gam_train_predictions_binomial, y_train) # This creates a summary table (commonly called a confusion matrix)
The list of 18 logistic models:
- BayesGLM
- BayesRNN
- C50
- Cubist
- Ensemble Bagging
- Ensemble C50
- Ensemble Support Vector Machines
- Ensemble XGBoost
- Flexible Discriminant Analysis
- Generalized Additive Models
- Generalized Linear Models
- Linear
- Linear Discriminant Analysis
- Penalized Discriminant Analysis
- Random Forest
- Support Vector Machines
- Trees
- XGBoost
The 28 plots automatically created by the package are:
- Correlation plot as circles and numbers
- Correlation plot as circles and colors
- Separators (the number of charts will depend on the number of features in the original data)
- accuracy_plot
- total_plot_fixed_scales
- total_plot_free_scales
- accuracy_barchart
- overfitting_plot_fixed_scales
- overfitting_plot_free_scales
- Duration_barchart
- Overfitting_barchart
- ROC_curves
- Boxplots 14 Barchart of target vs each feature
- True_positive_rate_fixed_scales
- True_positive_rate_free_scales
- True_negative_rate_fixed_scales
- True_negative_rate_free_scales
- False_positive_rate_fixed_scales
- False_positive_rate_free_scales
- False_negative_rate_fixed_scales
- False_negative_rate_free_scales
- F1_score_fixed_scales
- F1_score_free_scales
- Positive_predictive_value_fixed_scales
- Positive_predictive_value_free_scales
- Negative_predictive_value_fixed_scales
- Negative_predictive_value_free_scales
Note that several of the plots are represented twice - once with fixed scales and once with free scales.
The 7 tables and reports automatically created:
- Head_of_data
- Correlation of the original data
- VIF results
- Correlation of the ensemble
- Head of the ensemble
- Data_Summary
- Summary report, named "Mean of Holdout results". This includes the Model, Accuracy, True Positive, True Negative, False Positive, False Negative, Positive Predictive Value, Negative Predictive Value, F1 score, Area under the curve, overfitting min, overfitting mean, overfitting max, and duration.
The package also returns all 24 summary confusion matrices, alphabetical by model. If the user uses resampling, it adds up the values, so any error is visible, even if an event only happens once. For example, from the results about the Lebron data:
$Summary_tables$Cubist y_test cubist_test_predictions_binomial 0 1 0 4801 2555 1 4730 7080
It is also possible to save all trained models, save all plots, set the seed, and much more within LogisticEnsembles.
Summary: LogisticEnsembles should give everything you need to write a summary report based on the data.