Skip to content

Commit

Permalink
fix: audit_r_versions() returns a bar chart instead of a histogram (#179
Browse files Browse the repository at this point in the history
)

Co-authored-by: Neal Richardson <[email protected]>
  • Loading branch information
csgillespie and nealrichardson authored May 24, 2024
1 parent 6d4f822 commit 2899bee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
preventing problems when also using dplyr (#177).
- `Content$tag_delete()` removes the tag from the target content item rather
than removing the tag entirely. (#194)
- `audit_r_versions()` returns a bar chart instead of a histogram (#179)
- Fix issue with `NULL` or `length 1` job outputs ([#193](https://github.com/rstudio/connectapi/issues/193))


# connectapi 0.1.3.1

- Fix generated documentation HTML for CRAN submission
Expand Down
2 changes: 1 addition & 1 deletion R/audits.R
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ audit_r_versions <- function(apps) {

# histogram
p1 <- ggplot2::ggplot(timeline) +
ggplot2::geom_histogram(ggplot2::aes(r_version), stat = "count") +
ggplot2::geom_bar(ggplot2::aes(r_version)) +
ggplot2::theme_minimal() +
ggplot2::labs(
title = "Distribution of Content by R Version",
Expand Down

0 comments on commit 2899bee

Please sign in to comment.