You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I sparingly use vegan::ordiplot, which has a "cex" argument. However, ordiplot calls plot.cca, which does not take a cex argument, so that the behavior of vegan::ordiplot is inconsistent for different methods. Is would be great if plot.cca would also receive a cex argument so that vegan::ordiplot is a bit more consistent across different methods.
The text was updated successfully, but these errors were encountered:
We used to have argument cex=0.7 in ordiplot, but having cex in
call would require adding cex also to plot.cca which I don't want
to do. Still satisfies wish #656.
plot.cca is poorly configurable, and most things cannot be fine
tuned. The whole functions should be redesigned along lines
of pipes plot(x, type="n") |> text("species", ...) |>
points("sites", ...)
(cherry picked from commit 6917ea2)
I sparingly use vegan::ordiplot, which has a "cex" argument. However, ordiplot calls plot.cca, which does not take a cex argument, so that the behavior of vegan::ordiplot is inconsistent for different methods. Is would be great if plot.cca would also receive a cex argument so that vegan::ordiplot is a bit more consistent across different methods.
The text was updated successfully, but these errors were encountered: