Skip to content

Commit 66f7f73

Browse files
committed
Fix bug in cAIC code #387
And increase precision on unit test
1 parent 173078d commit 66f7f73

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: sdmTMB
33
Title: Spatial and Spatiotemporal SPDE-Based GLMMs with 'TMB'
4-
Version: 0.6.0.9016
4+
Version: 0.6.0.9017
55
Authors@R: c(
66
person(c("Sean", "C."), "Anderson", , "[email protected]",
77
role = c("aut", "cre"),

R/caic.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ cAIC.sdmTMB <- function(object, what = c("cAIC", "EDF"), ...) {
100100
par <- obj$env$parList()
101101
parDataMode <- obj$env$last.par
102102
indx <- obj$env$lrandom()
103-
q <- length(indx)
103+
q <- sum(indx)
104104
p <- length(object$model$par)
105105

106106
## use '-' for Hess because model returns negative loglikelihood
@@ -115,8 +115,8 @@ cAIC.sdmTMB <- function(object, what = c("cAIC", "EDF"), ...) {
115115
if (what == "caic") {
116116
jnll <- obj$env$f(parDataMode)
117117
cnll <- jnll - obj_new$env$f(parDataMode)
118-
cAIC <- 2 * cnll + 2 * (p + q) - 2 * sum(negEDF)
119-
return(cAIC)
118+
cAIC_out <- 2 * cnll + 2 * (p + q) - 2 * sum(negEDF)
119+
return(cAIC_out)
120120
} else if (what == "edf") {
121121
## Figure out group for each random-effect coefficient
122122
group <- factor(names(object$last.par.best[obj$env$random]))

tests/testthat/test-cAIC.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ test_that("cAIC and EDF work", {
1414
offset = log(dogfish$area_swept)
1515
)
1616
)
17-
expect_equal(AIC(fit), 12192.9613, tolerance = 1e-1)
18-
expect_equal(cAIC(fit), 12089.4289, tolerance = 1e-1)
17+
expect_equal(AIC(fit), 12192.9613, tolerance = 1e-4)
18+
expect_equal(cAIC(fit), 12071.4289, tolerance = 1e-4)
1919
edf <- cAIC(fit, what = "EDF")
20-
expect_equal(sum(edf), 54.3870, tolerance = 1e-2)
20+
expect_equal(sum(edf), 54.3870623, tolerance = 1e-4)
2121
})

0 commit comments

Comments
 (0)