Skip to content

Commit 1cf9578

Browse files
committed
fix
1 parent 680f8cb commit 1cf9578

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

R/plot.equivalence_test.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ plot.see_equivalence_test <- function(x,
137137

138138
insight::check_if_installed("ggridges")
139139

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

282282
insight::check_if_installed("ggridges")
283283

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

0 commit comments

Comments
 (0)