AUTO_VI$summary_plot {autovi} | R Documentation |
This function draws a summary plot for the result.
AUTO_VI$summary_plot(type = "auto", ...)
type |
Character. Either "auto", "density" or "rank". Option "auto"
will use the Boolean flag |
... |
Arguments passed to |
A ggplot
.
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()
}