Skip to content

Commit

Permalink
Merge pull request #340 from pbs-assess/fix-delta-gamma-binomial-link
Browse files Browse the repository at this point in the history
fix delta-gamma binomial link for type = 'poisson-link'
  • Loading branch information
seananderson committed May 17, 2024
2 parents a9bcda1 + 132f46b commit 0e3bb32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/families.R
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ delta_gamma <- function(link1,
.type <- "standard"
clean_name <- paste0("delta_gamma(link1 = '", l1, "', link2 = '", l2, "')")
}
structure(list(f1, f2, delta = TRUE, link = c("logit", "log"),
structure(list(f1, f2, delta = TRUE, link = c(l1, l2),
type = .type, family = c("binomial", "Gamma"),
clean_name = clean_name), class = "family")
}
Expand Down

0 comments on commit 0e3bb32

Please sign in to comment.