Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add gee prototype module with example #664

Merged
merged 14 commits into from
Nov 30, 2022
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Imports:
teal.reporter (>= 0.1.1),
teal.transform (>= 0.2.0),
teal.widgets (>= 0.2.0),
tern.gee,
tern.gee (>= 0.0.0.9002),
tern.mmrm (>= 0.2.1),
tidyr,
utils,
Expand All @@ -82,6 +82,7 @@ Remotes:
insightsengineering/teal.widgets@*release,
insightsengineering/teal@*release,
insightsengineering/tern.mmrm@*release,
insightsengineering/tern.gee@*release,
insightsengineering/tern@*release
Config/Needs/website: insightsengineering/nesttemplate
Encoding: UTF-8
Expand Down
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export(split_interactions)
export(styled_expr)
export(teal_enough_rows)
export(teal_has_element)
export(tm_a_gee)
export(tm_a_mmrm)
export(tm_g_barchart_simple)
export(tm_g_ci)
Expand Down Expand Up @@ -70,3 +71,4 @@ importFrom(magrittr,"%>%")
importFrom(methods,is)
importFrom(rlang,":=")
importFrom(rlang,.data)
importFrom(tern.gee,lsmeans)
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

### Enhancements
* Replaced `synthetic_cdisc_data` with refactored `synthetic_cdisc_dataset` function to speed up dataset loading in tests/examples.
* Added new GEE module `tm_a_gee`.
* Added interface for selecting an interaction term to `tm_t_ancova`.

### Miscellaneous
Expand Down
1 change: 1 addition & 0 deletions R/teal.modules.clinical.R
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ if (getRversion() >= "2.15.1") {
#' Avoiding R CMD check notes
#' @importFrom methods is
#' @importFrom rlang .data
#' @importFrom tern.gee lsmeans
#' @noRd
NULL
Loading