Skip to content

Commit

Permalink
Prep release
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemahoney218 committed Oct 16, 2023
1 parent 1ad2064 commit 1c18c9a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,16 @@ how well our predictions perform when aggregated to two different scales:

```{r}
guerry_points <- data.frame(
.truth = guerry$Crm_prs,
.estimate = predict(crime_model, guerry),
truth = guerry$Crm_prs,
estimate = predict(crime_model, guerry),
geometry = sf::st_centroid(sf::st_geometry(guerry))
)
guerry_points <- sf::st_as_sf(guerry_points)
guerry_multi_scale <- ww_multi_scale(
guerry_points,
.truth,
.estimate,
truth,
estimate,
n = list(c(5, 5), c(2, 2))
)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,16 @@ two different scales:

``` r
guerry_points <- data.frame(
.truth = guerry$Crm_prs,
.estimate = predict(crime_model, guerry),
truth = guerry$Crm_prs,
estimate = predict(crime_model, guerry),
geometry = sf::st_centroid(sf::st_geometry(guerry))
)
guerry_points <- sf::st_as_sf(guerry_points)

guerry_multi_scale <- ww_multi_scale(
guerry_points,
.truth,
.estimate,
truth,
estimate,
n = list(c(5, 5), c(2, 2))
)

Expand Down
6 changes: 3 additions & 3 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
This is the sixth CRAN release of waywiser. This patch release addresses
some breaking changes in new versions of the vip package, and updates some tests
and examples so that waywiser will pass checks under the new version of vip.
This is the seventh CRAN release of waywiser. This minor release addresses
some bugs in the `ww_multi_scale()` function and improves test coverage for
edge case behaviors.

## R CMD check results

Expand Down

0 comments on commit 1c18c9a

Please sign in to comment.