Skip to content

Commit

Permalink
Merge branch 'main' into 1044-fix-unique-id@main
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikeyakirar authored Apr 10, 2024
2 parents 61353b0 + a1fc91a commit 2685e35
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ default_language_version:
python: python3
repos:
- repo: https://github.com/lorenzwalthert/precommit
rev: v0.4.0
rev: v0.4.1
hooks:
- id: style-files
name: Style code with `styler`
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: teal.modules.clinical
Title: 'teal' Modules for Standard Clinical Outputs
Version: 0.9.0.9014
Date: 2024-03-27
Version: 0.9.0.9015
Date: 2024-04-09
Authors@R: c(
person("Joe", "Zhu", , "joe.zhu@roche.com", role = c("aut", "cre")),
person("Jana", "Stoilova", , "jana.stoilova@roche.com", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# teal.modules.clinical 0.9.0.9014
# teal.modules.clinical 0.9.0.9015

### Enhancements
* Updated `tm_g_forest_rsp` and `tm_g_forest_tte` to use refactored version of `g_forest`. Plots are now displayed as `ggplot` objects instead of `grob` objects. Added parameters `font_size` and `rel_width_forest` to control font size and width of plot relative to table, respectively.
Expand Down
2 changes: 1 addition & 1 deletion R/tm_g_lineplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ template_g_lineplot <- function(dataname = "ANL",
y_lab = ggplot2_args_ylab,
legend_title = ggplot2_args_legend_title,
ggtheme = ggplot2::theme_minimal(),
control = control_summarize_vars(conf_level = conf_level),
control = control_analyze_vars(conf_level = conf_level),
subtitle_add_paramcd = FALSE,
subtitle_add_unit = FALSE
),
Expand Down
6 changes: 3 additions & 3 deletions tests/testthat/_snaps/tm_g_lineplot.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
title = "Plot of Mean and 95% Mean Confidence Interval of AVAL by Visit",
subtitle = "", caption = NULL, y_lab = "AVAL Mean Values for",
legend_title = NULL, ggtheme = ggplot2::theme_minimal(),
control = control_summarize_vars(conf_level = 0.95),
subtitle_add_paramcd = FALSE, subtitle_add_unit = FALSE)
control = control_analyze_vars(conf_level = 0.95), subtitle_add_paramcd = FALSE,
subtitle_add_unit = FALSE)
plot
}
Expand Down Expand Up @@ -52,7 +52,7 @@
table_font_size = 4, newpage = FALSE, title = "Plot of Median and 90% Median Confidence Interval of CHG by Visit",
subtitle = "", caption = NULL, y_lab = "CHG Median Values for",
legend_title = NULL, ggtheme = ggplot2::theme_minimal(),
control = control_summarize_vars(conf_level = 0.9), subtitle_add_paramcd = FALSE,
control = control_analyze_vars(conf_level = 0.9), subtitle_add_paramcd = FALSE,
subtitle_add_unit = FALSE)
plot
}
Expand Down

0 comments on commit 2685e35

Please sign in to comment.