Skip to content

Commit

Permalink
Fix deprecated use of size in ggplot2::geom_line
Browse files Browse the repository at this point in the history
  • Loading branch information
nuno-agostinho committed Feb 3, 2024
1 parent 0c9b983 commit cbd710c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/analysis_correlation.R
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ plot.GEandAScorrelation <- function(
if (!is(loess, "error"))
plot <- plot + geom_line(
aes(x=loess$x, y=loess$y),
colour=loessColour, alpha=loessAlpha, size=loessWidth)
colour=loessColour, alpha=loessAlpha, linewidth=loessWidth)
}

if (density) {
Expand Down

0 comments on commit cbd710c

Please sign in to comment.