Skip to content

Commit

Permalink
fix delta-gamma binomial link for type = 'poisson-link'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jillian Dunic committed May 6, 2024
1 parent 3b4b112 commit 132f46b
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 132f46b

Please sign in to comment.