1

I am using iNEXT to make a rarefaction curve from abundance data. The ggiNEXT function returns the error "object 'se' not found" even when I put se=FALSE into the function. Help?

>out<-iNEXT(Sum3)
>ggiNEXT(out)
Error in fortify.iNEXT(x, type = type) : object 'se' not found
> ggiNEXT(out, se=FALSE)
Error in fortify.iNEXT(x, type = type) : object 'se' not found
www
  • 38,575
  • 12
  • 48
  • 84
Bianca
  • 11
  • 1

1 Answers1

0

Try adding the additional arguments q=[order of your DF's Hill number], datatype="abundance" to your first call of iNEXT.

I did so with the generic dataframe in the iNEXT help file ("spider",q=0) to your code and it ran without error.