-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
meggehsc
committed
May 25, 2024
1 parent
367ab70
commit 4b194e8
Showing
21 changed files
with
148 additions
and
51 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,2 +1,43 @@ | ||
^pkgdown$ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^\.travis\.yml$ | ||
^.Rprofile$ | ||
^inst/db$ | ||
^inst/bench$ | ||
^man-roxygen$ | ||
^demo/pandas$ | ||
^\.httr-oauth$ | ||
^cran-comments\.md$ | ||
^README\.Rmd$ | ||
^revdep$ | ||
^README-.*\.png$ | ||
^codecov\.yml$ | ||
^appveyor\.yml$ | ||
^Doxyfile$ | ||
^clion-test\.R$ | ||
^API$ | ||
^ISSUE_TEMPLATE\.md$ | ||
^data-raw$ | ||
^LICENSE\.md$ | ||
^BROWSE$ | ||
^GPATH$ | ||
^GRTAGS$ | ||
^GTAGS$ | ||
^TAGS$ | ||
^\.dir-locals\.el$ | ||
^vignettes/rsconnect$ | ||
^docs$ | ||
^_pkgdown\.yml$ | ||
^issues$ | ||
^CONDUCT\.md$ | ||
^archive$ | ||
^\.drake$ | ||
^CRAN-RELEASE$ | ||
^\.github$ | ||
^\.github/workflows/R-CMD-check\.yaml$ | ||
^\.github/workflows/pr-commands\.yaml$ | ||
^\.github/workflows/pkgdown\.yaml$ | ||
^doc$ | ||
^Meta$ | ||
^CRAN-SUBMISSION$ |
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 |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
.Rhistory | ||
.RData | ||
.Ruserdata | ||
tpm.Rcheck/ | ||
test_data/* |
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,13 @@ | ||
#' FIPS Codes | ||
#' | ||
#' This dataset provides a crosswalk between state names, postal codes, and | ||
#' FIPS codes. Used by the hpms() function. The variables are as follows: | ||
#' | ||
#' @format A data frame with 56rows and 4 variables: | ||
#' \describe{ | ||
#' \item{State_Name}{state name (e.g. 'Alabama')} | ||
#' \item{Postal_Code}{two character state postal code (e.g. 'AL')} | ||
#' \item{FIPS_Code}{Census Bureau FIPS Code (e.g. 1)} | ||
#' \item{STATE_NAME}{capitalized state name (e.g. 'ALAMABA')} | ||
#' } | ||
"fips_lookup" |
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
Binary file not shown.
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
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
test_that("null file_path throws error", { | ||
expect_warning(score(), ) | ||
|
||
scores_monthly <- lottr("Readings.csv", monthly = TRUE) | ||
scores_monthly <- lottr(test_path("testdata", "Readings.csv"), monthly = TRUE) | ||
|
||
}) |
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
File renamed without changes.
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