Skip to content

Commit

Permalink
spell check and update cran-comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Prener committed Jul 4, 2019
1 parent fa499de commit d6e899b
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 18 deletions.
12 changes: 6 additions & 6 deletions R/stl_homicides.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#' Homicides in the City of St. Louis, 2008 - 2018
#'
#' An example data set containing the addresses for Homicides reported by the Saint Louis Metropolitan Police Department
#' An example data set containing the addresses for homicides reported by the Saint Louis Metropolitan Police Department
#'
#' @docType data
#'
Expand All @@ -9,8 +9,8 @@
#' @format A tibble with 1822 rows and 6 variables:
#' \describe{
#' \item{street_address}{number, street and street suffix where homicide occured}
#' \item{year}{year homicide occured}
#' \item{date}{data homicide occured}
#' \item{year}{year homicide occurred}
#' \item{date}{data homicide occurred}
#' \item{state}{state abbreviation of location, in these data, all "MO"}
#' \item{postal_code}{zipcode/postal code of location, in these data all NA}
#' \item{city}{city of location, in these data all "St. Louis"}
Expand All @@ -26,7 +26,7 @@

#' Homicides in the City of St. Louis July, 2018
#'
#' An example data set containing the addresses for Homicides reported by the Saint Louis Metropolitan Police Department
#' An example data set containing the addresses for homicides reported by the Saint Louis Metropolitan Police Department
#'
#' @docType data
#'
Expand All @@ -35,8 +35,8 @@
#' @format A tibble with 24 rows and 6 variables:
#' \describe{
#' \item{street_address}{number, street and street suffix where homicide occured}
#' \item{year}{year homicide occured}
#' \item{date}{data homicide occured}
#' \item{year}{year homicide occurred}
#' \item{date}{data homicide occurred}
#' \item{state}{state abbreviation of location, in these data, all "MO"}
#' \item{postal_code}{zipcode/postal code of location, in these data all NA}
#' \item{city}{city of location, in these data all "St. Louis"}
Expand Down
15 changes: 15 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,20 @@ This is the initial version of the `censusxy` package.
## R CMD check results
There were no ERRORs, WARNINGs, or NOTEs with local or CI checks.

There was one NOTE on winbuilder checks:

* checking CRAN incoming feasibility ... NOTE
Maintainer: 'Christopher Prener <chris.prener@slu.edu>'

New submission

Possibly mis-spelled words in DESCRIPTION:
Geocoder (2:38)
geocoded (15:73)
geocoding (10:72, 12:58, 14:31)
vectorized (12:26)

The four words identified are all spelled correctly.

## Reverse dependencies
Not applicable.
10 changes: 5 additions & 5 deletions docs/articles/censusxy.html

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

6 changes: 3 additions & 3 deletions man/stl_homicides.Rd

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

6 changes: 3 additions & 3 deletions man/stl_homicides_small.Rd

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

2 changes: 1 addition & 1 deletion vignettes/censusxy.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ This package contains a single exported function, `cxy_geocode()`. The only requ
results <- cxy_geocode(stl_homicides, address = street_address)
```

However, it is highly recommended that you include city, state and zip code as well. Doing so will increase speed and accuracy significantly. The homicide deta contain city and state data as well, so the preferred call for these data would be:
However, it is highly recommended that you include city, state and zip code as well. Doing so will increase speed and accuracy significantly. The homicide data contain city and state data as well, so the preferred call for these data would be:

```r
results <- cxy_geocode(stl_homicides, address = street_address, city = city, state = state)
Expand Down

0 comments on commit d6e899b

Please sign in to comment.