Hello, I've successfully run my CCA and the ordination is not displayed quite right. Is it possible to flip the x-axis (ie., make it a mirror image of itself)? Thanks! Jeremy -- View this message in context: http://r.789695.n4.nabble.com/Flipping-axis-1-in-CCA-plot-vegan-tp3309726p3309726.html Sent from the R help mailing list archive at Nabble.com.
esgarbanzo <jcram <at> uw.edu> writes:> > > Hello, > I've successfully run my CCA and the ordination is not displayed quite > right. Is it possible to flip the x-axis (ie., make it a mirror image of > itself)? >Howdy, I don't know wha tyou mean when you say that the ordination is not displayed "right". Howeveer, you can flip an axis by setting its limits in xlim or ylim. First axis is flipped by: m <- cca(dune) plot(m, xlim = c(2, -3)) Cheers, Jari Oksanen