https://github.com/cran/bbmle
Raw File
Tip revision: 13982dbec4de7e8f454e60e5769fa597e6de56aa authored by Ben Bolker on 11 May 2022, 07:20:02 UTC
version 1.0.25
Tip revision: 13982db
BIC.R
require(bbmle)
x <- 0:10
y <- c(26, 17, 13, 12, 20, 5, 9, 8, 5, 4, 8)
d <- data.frame(x,y)
fit <- mle2(y~dpois(lambda=ymax/(1+x/xhalf)), start=list(ymax=25,xhalf=3),data=d)
fit2 <- mle2(y~dpois(lambda=(x+1)*slope), start=list(slope=1),data=d)
BIC(fit)
BIC(fit,fit2)
back to top