0

When using envfit in the vegan package, does the magnitude of each parameter matter?

I have two dataframes:

bwsp: invertebrate abundances

bwenv: five environmental parameters (distance, depth, flow, chlorophyll, phaeophytin)

Three of my parameters have similar magnitudes, and the other two are 2-3 orders of magnitude smaller. The smaller parameters don't appear on the MDS plot.

m <- metaMDS(bwsp)
ef <- envfit(m, bwenv, perm = 1000, na.rm = TRUE)
ef
plot(m)
plot(ef, add = T, p. = 0.05) 
ayesha
  • 135
  • 15

1 Answers1

0

envfit is based on correlation, and the original magnitude does not influence its results. However, you specified P-value limit p. = 0.05 in your plot, and this may have dropped some variables.

This is guessing, because you don't provide a reproducible example.

Jari Oksanen
  • 3,287
  • 1
  • 11
  • 15