print(t(Coef(r2)@C), digits = 3)Better is
print(t(concoef(r2)), digits = 3)
t(round(Coef(r2.75)@C, digits = 3))Better is
t(round(concoef(r2.75), digits = 3))
round(t(Coef(b1, ITolerances = FALSE)@C), digits = 3)
1. "indirect gradient analysis" should be "in direct gradient analysis" in the middle of p.21.
1. The VGAM packages runs under Version 4 of the S language. Hence, vglm() and vgam() objects have slots, so fit@x and fit@y etc. should be used instead of fit$x and fit$y. 2. qtplot() now replaces ceplot() for plotting regression quantiles. 3. Reduced-rank VGLMs are treated in detail in a paper by the same name, by Yee and Hastie (2003). Canonical Gaussian ordination (CGO) can be performed by a class of "Quadratic RR-VGLMs".
Last modified: Wed 14 Sep 2022 13:09:25 NZST