Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Dec 3, 2024
1 parent 680f8cb commit 1cf9578
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/plot.equivalence_test.R
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ plot.see_equivalence_test <- function(x,

insight::check_if_installed("ggridges")

p <- ggplot(tmp, aes(x = estimate, y = predictor, fill = grp)) +
p <- ggplot(tmp, aes(x = .data$estimate, y = .data$predictor, fill = .data$grp)) +
annotate(
"rect",
xmin = .rope[1],
Expand Down Expand Up @@ -281,7 +281,7 @@ plot.see_equivalence_test_df <- function(x,

insight::check_if_installed("ggridges")

p <- ggplot(tmp, aes(x = estimate, y = predictor, fill = grp)) +
p <- ggplot(tmp, aes(x = .data$estimate, y = .data$predictor, fill = .data$grp)) +
annotate(
"rect",
xmin = .rope[1],
Expand Down

0 comments on commit 1cf9578

Please sign in to comment.