Skip to content
Prev 3944 / 7420 Next

extract beta.sim from dist type data (package betapart)

Hi Elaine.

Please do not cross-post to multiple help lists. Please do include a
reproducible example.

The help for beta.pair says that it returns a list, so you can extract
the component you're interested in from that list in the usual way. If
you don't know what the usual way is, then you should definitely read
an Introduction to R or some other basic materials.

Using data provided with the package:


data(ceram.s)
ceram.dist <- beta.pair(ceram.s, index.family="sor")
class(ceram.dist)
names(ceram.dist)
ceram.sim <- ceram.dist[["beta.sim"]]
class(ceram.sim)


Sarah
On Wed, Jul 17, 2013 at 5:50 AM, Elaine Kuo <elaine.kuo.tw at gmail.com> wrote: