将素食主义者的物种积累曲线中的 y 轴更改为百分比

change y axis in species accumulation curves in vegan into percentages

我想在 R 中创建一个物种积累曲线(我尝试使用 vegan 包),但我不想在 y 轴上显示物种数量,而是想指出物种总数的百分比在 y 轴上。这将允许我计算例如根据采样点的数量,我可以找到现有物种总数的 50%。

感谢您的帮助! 艾伦

要使用的示例数据集

require(vegan)
data(dune)
plot(specaccum(dune,method="random"))

您可以操纵 specaccum 输出

accum <- specaccum(dune,method="random")
accum$sd <- accum$sd/max(accum$richness)*100
accum$richness <- accum$richness/max(accum$richness)*100
plot(accum)