Skip to content

Instantly share code, notes, and snippets.

@romunov
Created October 28, 2015 08:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save romunov/4f6e05cf721829eb2eaa to your computer and use it in GitHub Desktop.
Save romunov/4f6e05cf721829eb2eaa to your computer and use it in GitHub Desktop.
how to label a busy plot
library(vegan)
N <- 1000
xy <- data.frame(x = rnorm(N), y = rnorm(N), z = rnorm(N))

pca <- prcomp(xy)
plot(pca$x, type = "n")
orditorp(x = pca, display = "sites", air = 2)

http://biolitika.si/piks/Rplot02.png

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment