smle_wrappers {epiphy} | R Documentation |
These functions are the core of the fitting processes performed in
fit_two_distr
.
smle_pois(data)
smle_nbinom(data)
smle_binom(data)
smle_betabinom(data)
data |
The data set to work with. It can be a vector (if there is only
one variable), a data frame (if there is one or more variables) or an
|
See smle
set.seed(12345)
data <- rpois(100, lambda = 5)
res <- smle_pois(data)
res
summary(res)
data <- count(aphids)
res <- smle_pois(data)
res
summary(res)