fCumul {occugene} | R Documentation |
Returns values for parameterized cumulative occupancy distributions.
fCumul(x,b0,b1,b2)
x |
Point to evaluate |
b0 |
Parameter b0 |
b1 |
Parameter b1 |
b2 |
Parameter b2 |
Function fitted to the cumulative occupancy distribution for a multinomial distribution. Exponential model := b0-b1*exp(-b2*x).
Returns a numeric
Oliver Will owill4@yahoo.com
See the book chapter O. Will (**) in **
x <- 2 b0 <- 3 b1 <- 3 b2 <- 0.01 val <- fCumul(x,b0,b1,b2)