R/plot_distribution_check.R
plot.dispersion_check.Rd
Plot the results from a dispersion check
# S3 method for dispersion_check plot(x, y, ...)
x | a dispersion_check object. Which is the output of
|
---|---|
y | currently ignored |
... | currently ignored |
a ggplot2 object
Other utils: generate_data
,
plot.distribution_check
library(INLA) set.seed(20181202) model <- inla( poisson ~ 1, family = "poisson", data = data.frame( poisson = rpois(20, lambda = 10), base = 1 ), control.predictor = list(compute = TRUE) ) dc <- dispersion_check(model) plot(dc)