plotvglm {VGAM} | R Documentation |
Currently not working, this function can be used to feed the object to the VGAM plotting function. In the future some diagnostic plots will be plotted.
plotvglm(x, type = c("vglm", "vgam"), newdata = NULL, y = NULL, residuals = NULL, rugplot = TRUE, se = FALSE, scale = 0, raw = TRUE, offset.arg = 0, deriv.arg = 0, overlay = FALSE, type.residuals = c("deviance", "working", "pearson", "response"), plot.arg = TRUE, which.term = NULL, which.cf = NULL, control = plotvgam.control(...), varxij = 1, ...)
x |
Same as |
type |
Default is the first choice.
Currently the first choice gives an error (not written yet).
If |
newdata, y, residuals, rugplot |
Same as |
se, scale, raw, offset.arg |
Same as |
deriv.arg, overlay, type.residuals |
Same as |
plot.arg, which.term, which.cf, control |
Same as |
..., varxij |
Same as |
Currently this function has not been written.
When this is done some diagnostic plots based on
residuals and hatvalues will be done.
In the meanwhile, this function can be used to
call the plotting function for vgam
objects.
Same as plotvgam
.
plotvgam
,
plotvgam.control
,
vglm
.
coalminers <- transform(coalminers, Age = (age - 42) / 5) fit <- vglm(cbind(nBnW, nBW, BnW, BW) ~ sm.bs(Age), binom2.or(zero = NULL), data = coalminers) ## Not run: par(mfrow = c(1, 3)) plot(fit, type = "vgam", se = TRUE, ylim = c(-3, 2), las = 1) plot(fit, type = "vgam", se = TRUE, which.cf = 1:2, lcol = "blue", scol = "orange", ylim = c(-3, 2)) plot(fit, type = "vgam", se = TRUE, which.cf = 1:2, lcol = "blue", scol = "orange", overlay = TRUE) ## End(Not run)