Skip to content

Commit

Permalink
Fix wrong log value
Browse files Browse the repository at this point in the history
  • Loading branch information
gowerc committed Jun 17, 2024
1 parent fdf9ffe commit 1364261
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vignettes/extending-jmpost.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -538,11 +538,11 @@ the `SimLongitudinalGSF` class is implemented:
SimLongitudinalGSF <- function(
times = c(-100, -50, 0, 50, 100, 150, 250, 350, 450, 550) / 365,
sigma = 0.01,
mu_s = c(0.6, 0.4),
mu_g = c(0.25, 0.35),
mu_s = log(c(0.6, 0.4)),
mu_g = log(c(0.25, 0.35)),
mu_b = log(60),
a_phi = log(c(4, 6)),
b_phi = log(c(4, 6)),
a_phi = c(4, 6),
b_phi = c(4, 6),
omega_b = 0.2,
omega_s = 0.2,
omega_g = 0.2,
Expand Down

0 comments on commit 1364261

Please sign in to comment.