I'm trying to produce biplots from constrained ordinations (dbRDA to be exact) and I would like to re-scale the lengths of the vector arrows. plot and ordiplot commands in vegan automatically scale the constraint vector arrows to fit the figure and therefore truncates the biplot score axis. An example:
library("vegan")
data(varechem)
data(varespec)
ord <- capscale(varespec ~ ., data = varechem)
plot(ord)
The biplot score axis for the vector arrows for the constraints are truncated (i.e. the full range from -1 to 1 is not shown) and cannot be read (particularly difficult for the right-hand side axis). Whereas scaling the CAP axis is of course easy using ylim and xlim I have yet to find a solution for re-scaling the constraints. I'm sure the answer is a very simple one, but I'm relatively new to vegan and haven't managed to figure it out after two days of trying.
Cheers,
-Aapo