Re: [R] add error bars to rarecurve from package vegan

2019-10-21 Thread Duncan Mackay
To: Eric Berger Cc: r-help Subject: Re: [R] add error bars to rarecurve from package vegan sorry there was a typo: it is `se = TRUE` but the result is the same: SE is not a rarecurve's parameter. On Mon, Oct 21, 2019 at 4:41 PM Luigi Marongiu wrote: > > I did not put an example beca

Re: [R] add error bars to rarecurve from package vegan

2019-10-21 Thread Luigi Marongiu
sorry there was a typo: it is `se = TRUE` but the result is the same: SE is not a rarecurve's parameter. On Mon, Oct 21, 2019 at 4:41 PM Luigi Marongiu wrote: > > I did not put an example because it is a question of the basic syntax > of this function, not about the data at hand. However, here is

Re: [R] add error bars to rarecurve from package vegan

2019-10-21 Thread Luigi Marongiu
I did not put an example because it is a question of the basic syntax of this function, not about the data at hand. However, here is a working example: ``` library(vegan) data(dune) spAbund <- rowSums(dune) raremin <- min(rowSums(dune)) rarecurve(dune, col = "blue", es = TRUE) ``` Thank you On M

Re: [R] add error bars to rarecurve from package vegan

2019-10-21 Thread Eric Berger
You might improve your chances for getting a response by supplying a minimal reproducible example. Remember to include all the library() commands showing which packages you are using. On Mon, Oct 21, 2019 at 2:53 PM Luigi Marongiu wrote: > Hello, > I am using the package vegan to generate raref

[R] add error bars to rarecurve from package vegan

2019-10-21 Thread Luigi Marongiu
Hello, I am using the package vegan to generate rarefaction curves with the function rarecurve. Is it possible to add error bars to the plot? I tried to add se = FALSE but it did not work. Also, would it be possible to remove the box around the label of the data? Thank you -- Best regards, Luigi