Skip to content

Commit

Permalink
fixed package dependencies hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
rmk118 committed Dec 2, 2024
1 parent 996cc43 commit 53a424e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
2 changes: 2 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ Suggests:
tidyr,
gtsummary,
broom,
drc,
qra,
testthat (>= 3.0.0)
Config/testthat/edition: 3
VignetteBuilder: knitr
Expand Down
11 changes: 9 additions & 2 deletions man/two_line_logistic.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions vignettes/articles/logistic.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ broom::glance(example_glm) %>%
### drc package

```{r}
testdrm <- drm(pred_maturity_num ~ x,
testdrm <- drc::drm(pred_maturity_num ~ x,
data = fc_mclust,
fct = LL.2(),
type = "binomial")
Expand All @@ -116,8 +116,8 @@ estfun.drc <- drc::estfun.drc
bread.drc <- drc::bread.drc
# use lmtest and sandwich packages to obtain robust standard errors
coeftest(testdrm, vcov = sandwich)
ED(testdrm, c(50), "delta")
lmtest::coeftest(testdrm, vcov = sandwich)
drc::ED(testdrm, c(50), "delta")
plot(testdrm) # built-in plotting method
```
Expand Down

0 comments on commit 53a424e

Please sign in to comment.