explore.default | R Documentation |
explore()
launches a Shiny application to interact with results from some
tidymodels functions.
To investigate model fit(s), explore()
can be used on objects produced by
tune::fit_resamples()
tune::tune_grid()
tune::tune_bayes()
finetune::tune_sim_anneal()
finetune::tune_race_anova()
finetune::tune_race_win_loss()
tune::last_fit()
The application starts in a new window and allows users to see how predicted values align with the true, observed data. There are 2-3 tabs in the application (depending on the object):
Tuning Parameters enables users to choose a specific set of tuning parameters. These results are shown in the Plots tab. The default configuration is based on the optimal value of the first performance metric used during the creation of the object.
Plots shows various panels that can visualize how well the model fits.
Specific points can be highlighted by clicking on them (as long as the
hover_only = FALSE
option was used). To reset the highlighted points,
double on the graph background.
About gives information on the application as well as links to get help or file bug reports/feature requests.
To quit the Shiny application, use the Esc
key.
## Default S3 method:
explore(x, ...)
## S3 method for class 'tune_results'
explore(x, hover_cols = NULL, hover_only = FALSE, ...)
x |
An object with class |
... |
Other parameters not currently used. |
hover_cols |
The columns to display while hovering in the Shiny app. This argument can be:
|
hover_only |
A logical to determine if interactive highlighting of points is enabled (the default) or not. This can be helpful for very large data sets. |
For resampling methods that produce more than one hold-out prediction per row (e.g. the bootstrap, repeated V-fold cross-validation), the predicted values shown in the plots are averages of the predictions for that specific row.
The ggplot2 theme used in the Shiny application corresponds to the current
theme in the R session. Run ggplot2::theme_set()
to change the theme for
the plots in the Shiny application.
For classification models, there is a toggle on the bottom left of
the application to choose between "Unscaled (i.e. linear)" and
"Logit scaled" probability scaling. The first options plots the raw
probabilities while the logit scaling uses scales::logit_trans()
to rescale
the axis. This can be helpful when a model with a linear predictor is used
(e.g. logistic or multinomial regression) since it can show linear effects
from a feature more easily.
When using the application, there may be warnings printed in the console about "event tied a source ID ... not registered". These can be ignored.
When racing results are explored, the shiny application will only allow tuning parameter combinations that were fully resampled. As a result, parameter combinations that were discarded during the race will not be able to be selected.
A shiny application.
data(ames_mlp_itr)
if (interactive()) {
explore(ames_mlp_itr, hover_cols = dplyr::contains("tude"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.