Skip to content

Commit

Permalink
Use .data pronoun instead of deprecated ..sample.. syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
bwiernik committed Aug 31, 2023
1 parent 80876a1 commit c4c2895
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(.data$sample) - ggplot2::after_stat(.data$theoretical)),

Check warning on line 239 in R/plot.check_normality.R

View workflow job for this annotation

GitHub Actions / lint-changed-files / lint-changed-files

file=R/plot.check_normality.R,line=239,col=121,[line_length_linter] Lines should not be more than 120 characters. This line is 124 characters.
shape = 16,
na.rm = TRUE,
stroke = 0,
Expand Down

0 comments on commit c4c2895

Please sign in to comment.