Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Oct 29, 2023
1 parent b3ad494 commit 3b18f5a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/testthat/test-PROreg.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ u <- rnorm(5, 0, sigma)
eta <- beta[1] + beta[2] * x + crossprod(t(Z), u)
p <- 1 / (1 + exp(-eta))
y <- PROreg::rBB(k, m, p, phi)
dat <- data.frame(cbind(y, x, z))
dat$z <- as.factor(dat$z)
dat <<- data.frame(cbind(y, x, z = as.factor(z)))

# apply the model
m1 <- PROreg::BBmm(
Expand Down

0 comments on commit 3b18f5a

Please sign in to comment.