Description Usage Arguments Value References See Also Examples
View source: R/sd.transectHolder.R
This function computes the standard deviation of the dispersal distances along a transect of seed traps.
1 |
transectHolder |
an object representing a transect of seed traps. |
The standard deviation of the seed dispersal distances is returned.
Jones, O.D., R. Maillardet, and A.P. Robinson. 2009. An Introduction to Scientific Programming and Simulation, Using R. Chapman And Hall/CRC.
1 2 3 4 5 6 7 8 9 10 11 12 | transect.1 <- trapTransect(distances = 1:4,
seed.counts = c(4, 3, 2, 0))
transect.2 <- trapTransect(distances = 1:3,
seed.counts = c(3, 2, 1))
transect.3 <- trapTransect(distances=(1:5)/2,
seed.counts = c(3, 4, 2, 3, 1))
allTraps <- transectHolder(transect.1, transect.2, transect.3,
family="Weibull")
mean(allTraps)
sd.transectHolder(allTraps)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.