AUTO_VI$summary_density_plot {autovi} | R Documentation |
This function draws a summary density plot for the result.
AUTO_VI$summary_plot( vss = self$check_result$observed$vss, null_dist = self$check_result$null$vss, boot_dist = self$check_result$boot$vss, p_value = self$check_result$p_value, likelihood_ratio = self$check_result$likelihood_ratio, density_alpha = 0.6 )
vss |
Numeric. Observed visual signal strength. |
null_dist |
Numeric. Null visual signal strength. |
boot_dist |
Numeric. Bootstrapped visual signal strength. |
p_value |
Numeric. P-value of the visual test. See also
|
likelihood_ratio |
Numeric. Likelihood ratio of the visual test. See
also |
density_alpha |
Numeric. Alpha value for the density. |
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$check()
myvi$summary_density_plot()
}