tidy_perf_data {mikropml} | R Documentation |
Tidy the performance dataframe
Description
Used by plot_model_performance()
.
Usage
tidy_perf_data(performance_df)
Arguments
performance_df |
dataframe of performance results from multiple calls to |
Value
Tidy dataframe with model performance metrics.
Author(s)
Begüm Topçuoglu, topcuoglu.begum@gmail.com
Kelly Sovacool, sovacool@umich.edu
Examples
## Not run:
# call `run_ml()` multiple times with different seeds
results_lst <- lapply(seq(100, 104), function(seed) {
run_ml(otu_small, "glmnet", seed = seed)
})
# extract and combine the performance results
perf_df <- lapply(results_lst, function(result) {
result[["performance"]]
}) %>%
dplyr::bind_rows()
# make it pretty!
tidy_perf_data(perf_df)
## End(Not run)
[Package mikropml version 1.6.1 Index]