From c1611fdc57938602925adce70d5d3a673250fb0f Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 15 Mar 2024 12:56:14 +0100 Subject: [PATCH] fix --- R/plot.performance_simres.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/plot.performance_simres.R b/R/plot.performance_simres.R index 2046358e2..5b2b0c010 100644 --- a/R/plot.performance_simres.R +++ b/R/plot.performance_simres.R @@ -38,7 +38,7 @@ plot.see_performance_simres <- function(x, # base plot information gg_init <- ggplot2::ggplot( data.frame(scaled_residuals = stats::residuals(x)), - ggplot2::aes(sample = scaled_residuals) + ggplot2::aes(sample = .data$scaled_residuals) ) # when we have package qqplotr, we can add confidence bands