Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Jan 5, 2025
1 parent d366123 commit 186f66f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion R/find_formula.R
Original file line number Diff line number Diff line change
Expand Up @@ -1698,7 +1698,6 @@ find_formula.model_fit <- function(x, verbose = TRUE, ...) {
f_coi <- f$pforms$coi
f_kappa <- f$pforms$kappa
f_bias <- f$pforms$bias
f_disc <- f$pforms$disc
f_bs <- f$pforms$bs

# brms formulas can also have custom names, based on variable names, e.g.:
Expand Down
6 changes: 3 additions & 3 deletions R/helper_functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -229,15 +229,15 @@
"extra", "scale", "marginal", "alpha", "beta", "survival", "infrequent_purchase",
"auxiliary", "mix", "shiftprop", "phi", "ndt", "hu", "xi", "coi", "zoi",
"aux", "dist", "selection", "outcome", "time_dummies", "sigma_random",
"beta_random", "car", "nominal", "bidrange", "mu", "kappa", "bias", "disc"
"beta_random", "car", "nominal", "bidrange", "mu", "kappa", "bias"
)
}

.aux_elements <- function() {
c(
"sigma", "alpha", "beta", "dispersion", "precision", "nu", "tau", "shape",
"phi", "(phi)", "ndt", "hu", "xi", "coi", "zoi", "mix", "shiftprop", "auxiliary",
"aux", "dist", "mu", "kappa", "bias", "disc",
"aux", "dist", "mu", "kappa", "bias",
# random parameters
"dispersion_random", "sigma_random", "beta_random"
)
Expand All @@ -246,7 +246,7 @@
.brms_aux_elements <- function() {
c(
"sigma", "mu", "nu", "shape", "beta", "phi", "hu", "ndt", "zoi", "coi",
"kappa", "bias", "bs", "zi", "disc", "alpha", "xi"
"kappa", "bias", "bs", "zi", "alpha", "xi"
)
}

Expand Down

0 comments on commit 186f66f

Please sign in to comment.