AUTO_VI$summary_plot {autovi} | R Documentation |
Draw a summary plot for the result
Description
This function draws a summary plot for the result.
Usage
AUTO_VI$summary_plot(type = "auto", ...)
Arguments
type |
Character. Either "auto", "density" or "rank". Option "auto"
will use the Boolean flag |
... |
Arguments passed to |
Value
A ggplot
.
Examples
keras_model <- try(get_keras_model("vss_phn_32"))
if (!inherits(keras_model, "try-error")) {
myvi <- auto_vi(lm(dist ~ speed, data = cars), keras_model)
myvi$lineup_check()
myvi$summary_plot()
}
[Package autovi version 0.4.0 Index]