
library(vegan)
buoy.rda <- rda(buoy_means, weather)
ef <- envfit(buoy.rda, weather, permutations = 1000)
ef
plot(buoy.rda)
plot(ef)
The buoy_means file columns are labeled by buoy ID (which is the red blob) not sit#

library(vegan)
buoy.rda <- rda(buoy_means, weather)
ef <- envfit(buoy.rda, weather, permutations = 1000)
ef
plot(buoy.rda)
plot(ef)
The buoy_means file columns are labeled by buoy ID (which is the red blob) not sit#
Copyright © 2021 Jogjafile Inc.
The red labels are the column names of your first matrix (X, or
buoy_meansin your case), the blue labels (and arrows) correspond to the column names of the second matrix (Y, orweatherin your case), and the black labels are the row names of both X and Y (since they should match).By default, sites, species and "biplot arrows" are displayed byt the
plotfunction. To know more about that, see the help file ofplot.cca(?plot.cca). The argument to change to have a different behaviour isdisplay:Example with sites on plot
and without sites