-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from Metropolitan-Council/patch-rlang-ggplot2
Patch rlang ggplot2
- Loading branch information
Showing
14 changed files
with
120 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Type: Package | ||
Package: councilR | ||
Title: Functions and Templates for the Metropolitan Council | ||
Version: 0.2.0 | ||
Date: 2023-03-10 | ||
Version: 0.2.1 | ||
Date: 2023-03-15 | ||
Authors@R: c( | ||
person("Metropolitan Council", role = "cph"), | ||
person("Liz", "Roten", , "[email protected]", role = c("cre", "aut"), | ||
|
@@ -32,7 +32,7 @@ Imports: | |
magrittr (>= 1.5), | ||
odbc (>= 1.2.2), | ||
purrr (>= 0.3), | ||
rlang (>= 0.4.12), | ||
rlang (>= 1.1.0), | ||
rstudioapi (>= 0.11), | ||
sf (>= 0.9.5), | ||
tictoc (>= 1.0), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#' @title Minnesota county FIPS codes | ||
#' | ||
#' @description A data.frame with county codes and names for the | ||
#' state of Minnesota. Derived from `{tigris}` fips_codes. | ||
#' | ||
#' @format A data.frame with 5 columns and 87 rows | ||
#' \describe{ | ||
#' \item{state}{character, state abbreviation} | ||
#' \item{state_code}{character, two digit state code} | ||
#' \item{state_name}{character, full state name} | ||
#' \item{county_code}{character, three digit county code} | ||
#' \item{county}{character, full county name} | ||
#' } | ||
#' | ||
#' @family data | ||
#' @examples | ||
#' mn_fips_codes | ||
#' @source `{tigris}` dataset, `fips_codes`. | ||
"mn_fips_codes" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## code to prepare `mn_fips_codes` dataset goes here | ||
|
||
load_all() | ||
|
||
mn_fips_codes <- tigris::fips_codes %>% | ||
dplyr::filter(state_code == "27") | ||
|
||
|
||
usethis::use_data(mn_fips_codes, overwrite = TRUE) |
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters