Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Jun 10, 2024
1 parent 5151d86 commit 2678188
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 @@ -279,7 +279,7 @@ plot.see_check_normality <- function(x,
# to scale the detrended qq plot
N <- length(x$y)
SD <- stats::sd(x$y) * sqrt((N - 1) / N)
y_range <- c(min(pretty(range(x$y), n = 2)), max(pretty(range(x$y), n = 2)))
y_range <- round(range(x$y), 1)

gg_init <- ggplot2::ggplot(x, ggplot2::aes(sample = .data$y))

Expand Down

0 comments on commit 2678188

Please sign in to comment.