Skip to content

Commit 9f00032

Browse files
authored
Merge branch 'main' into 899-report_missing_data
2 parents 005c8f8 + c45be63 commit 9f00032

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Type: Package
22
Package: teal.modules.general
33
Title: General Modules for 'teal' Applications
4-
Version: 0.4.1.9014
5-
Date: 2025-08-04
4+
Version: 0.4.1.9015
5+
Date: 2025-08-05
66
Authors@R: c(
77
person("Dawid", "Kaledkowski", , "[email protected]", role = c("aut", "cre")),
88
person("Pawel", "Rucki", , "[email protected]", role = "aut"),

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# teal.modules.general 0.4.1.9014
1+
# teal.modules.general 0.4.1.9015
22

33
### Bug fixes
44

R/tm_a_regression.R

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -830,18 +830,15 @@ srv_a_regression <- function(id,
830830
color = "red",
831831
linetype = "dashed"
832832
) +
833-
ggplot2::geom_text(
834-
ggplot2::aes(
835-
x = 0,
836-
y = mean(data$.cooksd, na.rm = TRUE),
837-
label = paste("mu", "=", round(mean(data$.cooksd, na.rm = TRUE), 4)),
838-
vjust = -1,
839-
hjust = 0,
840-
color = "red",
841-
angle = 90
842-
),
843-
parse = TRUE,
844-
show.legend = FALSE
833+
ggplot2::annotate(
834+
geom = "text",
835+
x = 0,
836+
y = mean(data$.cooksd, na.rm = TRUE),
837+
label = paste("mu", "=", round(mean(data$.cooksd, na.rm = TRUE), 4)),
838+
vjust = -1,
839+
hjust = 0,
840+
color = "red",
841+
angle = 90
845842
) +
846843
outlier_label,
847844
env = list(plot = plot, outlier = input$outlier, outlier_label = outlier_label())

0 commit comments

Comments
 (0)