View source: R/visualizer-lib-feature-selection.R
plot_feature_importance | R Documentation |
Plot the raw or summarized feature importances as a boxplot, scatter plot, line plot, or bar plot with or without 1 SD error bars.
plot_feature_importance(
fit_results = NULL,
eval_results = NULL,
eval_name = NULL,
eval_fun = "summarize_feature_importance",
eval_fun_options = NULL,
vary_params = NULL,
feature_col,
show_max_features = NULL,
show = c("errorbar", "bar"),
...
)
fit_results |
A tibble, as returned by |
eval_results |
A list of result tibbles, as returned by
|
eval_name |
Name of |
eval_fun |
Character string, specifying the function used to compute
the data used for plotting if |
eval_fun_options |
List of named arguments to pass to |
vary_params |
A vector of |
feature_col |
A character string identifying the column in
|
show_max_features |
Maximum number of features to plot. |
show |
Character vector with elements being one of "boxplot", "point", "line", "bar", "errorbar", "ribbon", "violin", indicating what plot layer(s) to construct. |
... |
Arguments passed on to
|
If interactive = TRUE
, returns a plotly
object if
plot_by
is NULL
and a list of plotly
objects if
plot_by
is not NULL
. If interactive = FALSE
, returns
a ggplot
object if plot_by
is NULL
and a list of
ggplot
objects if plot_by
is not NULL
.
Other feature_selection_funs:
eval_feature_importance_funs
,
eval_feature_selection_curve_funs
,
eval_feature_selection_err_funs
,
plot_feature_selection_curve()
,
plot_feature_selection_err()
# generate example fit_results data
fit_results <- tibble::tibble(
.rep = rep(1:2, times = 2),
.dgp_name = c("DGP1", "DGP1", "DGP2", "DGP2"),
.method_name = c("Method"),
feature_info = lapply(
1:4,
FUN = function(i) {
tibble::tibble(
# feature names
feature = c("featureA", "featureB", "featureC"),
# estimated feature importance scores
est_importance = c(10, runif(2, min = -2, max = 2))
)
}
)
)
# generate example eval_results data
eval_results <- list(
`Feature Importance` = summarize_feature_importance(
fit_results,
nested_cols = "feature_info",
feature_col = "feature",
imp_col = "est_importance"
)
)
# create bar plot using pre-computed evaluation results
plt <- plot_feature_importance(eval_results = eval_results,
eval_name = "Feature Importance",
feature_col = "feature")
# or alternatively, create the same plot directly from fit results
plt <- plot_feature_importance(fit_results = fit_results,
feature_col = "feature",
eval_fun_options = list(
nested_cols = "feature_info",
imp_col = "est_importance"
))
# can customize plot (see plot_eval_constructor() for possible arguments)
plt <- plot_feature_importance(eval_results = eval_results,
eval_name = "Feature Importance",
feature_col = "feature",
errorbar_args = list(width = .5, position = "dodge"),
bar_args = list(width = .5))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.