I'm creating a CCA diagram in R using the vegan package. My row names are showing up as row1, row2, row3, etc. in the diagram, even though I have specified row.names = 1
. I just don't seem to be able to get rid of them!
Code:
env.dat <- read.table("env.data.txt", header = TRUE, row.names = 1, sep= "\t")
mod1.cca <- cca(spec.dat ~ soil.moisture + soil.pH + light + Light.transmission, data = env.dat) plot(mod1.cca, disp=c("wa", "sp", "bp"))
Any ideas?