0

I would like to create a species accumulation curve in R (I tried using the vegan package), but instead of showing the number of species on the y axis, I would like to indicate the % of total number of species on the y axis. This would allow me to calculate e.g. with how many sites sampled, I can find 50% of total species present.

Thanks for any help! Ellen

example dataset to play with

require(vegan)
data(dune)
plot(specaccum(dune,method="random"))
J_F
  • 9,956
  • 2
  • 31
  • 55
user15930
  • 3
  • 2

1 Answers1

0

You can manipulate the specaccum output

accum <- specaccum(dune,method="random")
accum$sd <- accum$sd/max(accum$richness)*100
accum$richness <- accum$richness/max(accum$richness)*100
plot(accum)
Richard Telford
  • 9,558
  • 6
  • 38
  • 51