diagnostics: Regression Diagnostic Plots for estimate Objects
Description
GGMs have a direct correspondence to multiple regression. Hence this function
provides diagnostic plots for inspecting the fitted regression models. This allows for
visually inspecting assumptions of the model (e.g., normality of the residuals, etc.)
Usage
diagnostics(object, iter = 500, ...)
Arguments
object
object of class estimate
iter
iterations used for computing residuals and fitted values
# NOT RUN {# dataY <- subset(tas, gender == "M")[,-ncol(tas)]
# fit modelfit <- estimate(Y)
# diagnostic plot (iter = 10 as an example)diagnostics(fit, iter = 10)
# }