logistic—function to perform logistic analysis and return the results to the user.
Logistic(
data,
colnum,
numresamples,
remove_VIF_greater_than,
remove_ensemble_correlations_greater_than,
save_all_trained_models = c("Y", "N"),
save_all_plots = c("Y", "N"),
how_to_handle_strings = c("0", "1"),
do_you_have_new_data = c("Y", "N"),
use_parallel = c("Y", "N"),
train_amount,
test_amount,
validation_amount
)
a real number
data can be a CSV file or within an R package, such as MASS::Pima.te
the column number with the logistic data
the number of resamples
Removes features with VIGF value above the given amount (default = 5.00)
Enter a number to remove correlations in the ensembles
"Y" or "N". Places all the trained models in the Environment
Options to save all plots
0: No strings, 1: Factor values
"Y" or "N". If "Y", then you will be asked for the new data
"Y" or "N" for parallel processing
set the amount for the training data
set the amount for the testing data
Set the amount for the validation data