Skip to content
Open
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
62b115d
patchwork alternative
m7pr Feb 24, 2026
98f83d8
[skip style] [skip vbump] Restyle files
github-actions[bot] Feb 24, 2026
b89a623
[skip roxygen] [skip vbump] Roxygen Man Pages Auto Update
github-actions[bot] Feb 24, 2026
6ad660a
Merge branch 'main' into patchwork-scatterplotmatrix
m7pr Mar 6, 2026
f71fa93
applied feedback
m7pr Mar 9, 2026
dccf03e
remove duplication
m7pr Mar 9, 2026
6c10564
improve calidate_qenv
m7pr Mar 9, 2026
4b0dd87
rename file to keep the same naming convention
m7pr Mar 9, 2026
fe96a1d
revert changes on validate_qenv
m7pr Mar 9, 2026
725ed24
remove get_scatterplotmatrix_stats
m7pr Mar 10, 2026
a95fe74
apply feedback for tm_g_scatterplotmatrix
m7pr Mar 11, 2026
4881836
change patchwork to ggplot object
m7pr Mar 11, 2026
ad3e275
make it even more clear
m7pr Mar 11, 2026
5cd18af
bring old geoms styyle
m7pr Mar 11, 2026
292ef4d
Apply suggestion from @m7pr
m7pr Mar 11, 2026
082fe54
Apply suggestion from @m7pr
m7pr Mar 11, 2026
1c9fa93
[skip style] [skip vbump] Restyle files
github-actions[bot] Mar 11, 2026
6deb5bd
[skip roxygen] [skip vbump] Roxygen Man Pages Auto Update
github-actions[bot] Mar 11, 2026
edb7bee
remove non-ascii string
m7pr Mar 12, 2026
64b5bea
Merge branch 'patchwork-scatterplotmatrix' of https://github.com/insi…
m7pr Mar 12, 2026
2a92e94
update WORDLIST
m7pr Mar 12, 2026
c4a9036
lintr
m7pr Mar 12, 2026
888b8eb
Merge branch 'main' into patchwork-scatterplotmatrix
m7pr Mar 12, 2026
4d51a4d
[skip style] [skip vbump] Restyle files
github-actions[bot] Mar 12, 2026
e664ced
wordlist typo
m7pr Mar 12, 2026
202c0dc
Empty-Commit
m7pr Mar 12, 2026
8bf3236
typo
m7pr Mar 16, 2026
2594752
last touches on axes
m7pr Mar 16, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ Imports:
gridExtra (>= 2.3),
htmlwidgets (>= 1.6.4),
jsonlite (>= 1.8.9),
lattice (>= 0.18-4),
lifecycle (>= 0.2.0),
patchwork (>= 1.2.0),
MASS (>= 7.3-60),
rmarkdown (>= 2.23),
rtables (>= 0.6.11),
Expand Down Expand Up @@ -100,7 +100,7 @@ Config/Needs/verdepcheck: haleyjeppson/ggmosaic, tidyverse/ggplot2,
tidyverse/tibble, tidyverse/tidyr, daattali/colourpicker,
daattali/ggExtra, aphalo/ggpmisc, aphalo/ggpp, slowkow/ggrepel,
baddstats/goftest, ramnathv/htmlwidgets, jeroen/jsonlite, yihui/knitr,
daroczig/logger, deepayan/lattice, insightsengineering/nestcolor,
daroczig/logger, thomasp85/patchwork, insightsengineering/nestcolor,
r-lib/pkgload, r-lib/rlang, rstudio/rmarkdown,
insightsengineering/roxy.shinylive, insightsengineering/rtables,
tidyverse/rvest, htmlwidgets/sparkline, rstudio/shinytest2,
Expand Down
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ S3method(teal.reporter::to_rmd,markdown_internal)
S3method(tools::toHTML,markdown_internal)
export(add_facet_labels)
export(geom_mosaic)
export(get_scatterplotmatrix_stats)
export(tm_a_pca)
export(tm_a_regression)
export(tm_data_table)
Expand Down
8 changes: 6 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@
- Modules now return a `teal_report` object that contains the data, code and reporter. All the reporter buttons were removed from the modules' UI.
- Support case when both variables are categorical in association and bivariate plots.
- Improve `tm_missing_data` visualization (#495).
- Multiple decorators can be applied to the same output object (#978).
- Introduced `tm_gtsummary()`, a new module for generating tables using the [gtsummary](https://cran.r-project.org/package=gtsummary) package (#973).
- `tm_g_scatterplotmatrix()` has been rewritten to use `ggplot2` and `patchwork`
instead of `lattice`. Panel text scales automatically with the number of
variables so labels remain readable at any matrix size. NA handling retains
the familiar **Omit NAs** checkbox (default, `use = "pairwise.complete.obs"`);
unchecking it reveals a dropdown with all five `stats::cor()` `use` options.
`get_scatterplotmatrix_stats()` has been removed (#986).

# teal.modules.general 0.5.1

Expand Down
1 change: 0 additions & 1 deletion R/tm_a_regression.R
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ tm_a_regression <- function(label = "Regression Analysis",
checkmate::assert_multi_class(post_output, c("shiny.tag", "shiny.tag.list", "html"), null.ok = TRUE)
checkmate::assert_choice(default_plot_type, seq.int(1L, length(plot_choices)))
checkmate::assert_string(default_outlier_label)
assert_decorators(decorators)
Copy link
Copy Markdown
Contributor Author

@m7pr m7pr Mar 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is repeated in line 245/246. so I deleted duplication


if (length(label_segment_threshold) == 1) {
checkmate::assert_numeric(label_segment_threshold, any.missing = FALSE, finite = TRUE)
Expand Down
Loading