Skip to content

Commit

Permalink
Fixes for submission
Browse files Browse the repository at this point in the history
  • Loading branch information
hafen committed Nov 29, 2023
1 parent 6da91cf commit b2f25f9
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
11 changes: 6 additions & 5 deletions cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ New submission

Package was archived on CRAN today

- Updated to be compatible with ggplot2 updates
- Added new grids
- Changed vignette builder to pkgdown (no longer dependent on packagedocs)
Updates since last release:

- Fixed obscure issue with unicode characters in grid names on some linux systems that caused the package to be removed from CRAN
- Updated package infrastructure to reflect latest CRAN policies, etc.

## Test environments

* local OS X install, R 4.3.2
* ubuntu 16.04 (on travis-ci), R 4.0.0
* ubuntu 22.04.3 (on GitHub Actions), R 4.3.2
* win-builder (devel and release)

## R CMD check results
Expand All @@ -20,4 +21,4 @@ Package was archived on CRAN today

## Reverse dependencies

R CMD check ran successfully on the only reverse dependencies arcos and polAr.
R CMD check ran successfully on the only reverse dependencies geoAr and geofi.
6 changes: 3 additions & 3 deletions man-roxygen/ex-facet_geo.R
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ ggplot(election, aes("", pct, fill = candidate)) +
facet_geo(~ state, grid = "us_state_grid2") +
scale_y_continuous(expand = c(0, 0)) +
labs(title = "2016 Election Results",
caption = "Data Source: https://docs.google.com/spreadsheets/d/133Eb4qQmOxNvtesw2hdVns073R68EZx4SfCnP4IGQf8",
caption = "Data Source: 2016 National Popular Vote Tracker",
x = NULL,
y = "Percentage of Voters") +
theme(axis.title.x = element_blank(),
Expand All @@ -177,7 +177,7 @@ ggplot(election, aes(candidate, pct, fill = candidate)) +
theme_bw() +
coord_flip() +
labs(title = "2016 Election Results",
caption = "Data Source: https://docs.google.com/spreadsheets/d/133Eb4qQmOxNvtesw2hdVns073R68EZx4SfCnP4IGQf8",
caption = "Data Source: 2016 National Popular Vote Tracker",
x = NULL,
y = "Percentage of Voters") +
theme(strip.text.x = element_text(size = 6))
Expand All @@ -188,7 +188,7 @@ ggplot(election, aes(candidate, votes / 1000000, fill = candidate)) +
facet_geo(~ state, grid = "us_state_grid2") +
coord_flip() +
labs(title = "2016 Election Results",
caption = "Data Source: https://docs.google.com/spreadsheets/d/133Eb4qQmOxNvtesw2hdVns073R68EZx4SfCnP4IGQf8",
caption = "Data Source: 2016 National Popular Vote Tracker",
x = NULL,
y = "Votes (millions)") +
theme(strip.text.x = element_text(size = 6))
Expand Down
6 changes: 3 additions & 3 deletions man/facet_geo.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions vignettes/geofacet.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ ggplot(election, aes("", pct, fill = candidate)) +
facet_geo(~ state, grid = "us_state_grid2") +
scale_y_continuous(expand = c(0, 0)) +
labs(title = "2016 Election Results",
caption = "Data Source: https://docs.google.com/spreadsheets/d/133Eb4qQmOxNvtesw2hdVns073R68EZx4SfCnP4IGQf8",
caption = "Data Source: 2016 National Popular Vote Tracker",
x = NULL,
y = "Percentage of Voters") +
theme(axis.title.x = element_blank(),
Expand All @@ -271,7 +271,7 @@ ggplot(election, aes(candidate, pct, fill = candidate)) +
theme_bw() +
coord_flip() +
labs(title = "2016 Election Results",
caption = "Data Source: https://docs.google.com/spreadsheets/d/133Eb4qQmOxNvtesw2hdVns073R68EZx4SfCnP4IGQf8",
caption = "Data Source: 2016 National Popular Vote Tracker",
x = NULL,
y = "Percentage of Voters") +
theme(strip.text.x = element_text(size = 6))
Expand All @@ -284,7 +284,7 @@ ggplot(election, aes(candidate, votes / 1000000, fill = candidate)) +
facet_geo(~ state, grid = "us_state_grid2") +
coord_flip() +
labs(title = "2016 Election Results",
caption = "Data Source: https://docs.google.com/spreadsheets/d/133Eb4qQmOxNvtesw2hdVns073R68EZx4SfCnP4IGQf8",
caption = "Data Source: 2016 National Popular Vote Tracker",
x = NULL,
y = "Votes (millions)") +
theme(strip.text.x = element_text(size = 6))
Expand Down

0 comments on commit b2f25f9

Please sign in to comment.