Skip to content

Commit

Permalink
fix global variable issue
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Aug 30, 2023
1 parent 5d21ced commit 789b5c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/plot.check_normality.R
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ plot.see_check_normality <- function(x,
}
,
ggplot2::geom_qq(
mapping = if (detrend) ggplot2::aes(y = ggplot2::after_stat(sample) - ggplot2::after_stat(theoretical)),
mapping = if (detrend) ggplot2::aes(y = ggplot2::after_stat("sample") - ggplot2::after_stat("theoretical")),
shape = 16,
na.rm = TRUE,
stroke = 0,
Expand Down

0 comments on commit 789b5c1

Please sign in to comment.