Skip to content

Commit

Permalink
Get rid of ggplot warning on scales.
Browse files Browse the repository at this point in the history
  • Loading branch information
maciekbanas committed Sep 25, 2023
1 parent 459e7fa commit 2ecbc63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/plots.R
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ gitstats_plot.repos_stats <- function(stats_table = NULL,
repos_to_plot,
ggplot2::aes(
x = repository,
y = .data[[value_to_plot]],
y = as.double(.data[[value_to_plot]]),
fill = platform
)) +
ggplot2::geom_bar(stat = "identity") +
Expand Down

0 comments on commit 2ecbc63

Please sign in to comment.