To visualize the effect of rarefaction, one can visualize the species richness as a function of size of random sample.
This can be done with vegan, however, we might consider adding ggplot implementation to miaViz.
library(vegan)
data("dune")
rarecurve(dune, step = 1, sample = min(rowSums(dune)))

To visualize the effect of rarefaction, one can visualize the species richness as a function of size of random sample.
This can be done with
vegan, however, we might consider addingggplotimplementation tomiaViz.