Skip to content

Commit

Permalink
213: fix binding (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielinteractive committed Jul 6, 2023
1 parent 307c409 commit 29fc597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/graphs.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ draw_libsize_hist <- function(object,
stat_bin(
bins = bins,
geom = "text",
aes(label = ifelse(after_stat(count) > 0, after_stat(count), "")),
aes(label = ifelse(after_stat(.data$count) > 0, after_stat(.data$count), "")),
vjust = -0.25
) +
ggtitle("Histogram of Library Sizes") +
Expand Down

0 comments on commit 29fc597

Please sign in to comment.