From 1cf95786ef4f0613fb4adf587e4c77f628826683 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 3 Dec 2024 21:46:43 +0100 Subject: [PATCH] fix --- R/plot.equivalence_test.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/plot.equivalence_test.R b/R/plot.equivalence_test.R index 083367918..73eae78cc 100644 --- a/R/plot.equivalence_test.R +++ b/R/plot.equivalence_test.R @@ -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], @@ -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],