From 1c18c9abcc6ea6eb790113688910093316d0a29c Mon Sep 17 00:00:00 2001 From: Mike Date: Mon, 16 Oct 2023 10:45:29 -0500 Subject: [PATCH] Prep release --- README.Rmd | 8 ++++---- README.md | 8 ++++---- cran-comments.md | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.Rmd b/README.Rmd index eabc62f..233525c 100644 --- a/README.Rmd +++ b/README.Rmd @@ -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)) ) diff --git a/README.md b/README.md index 634be3d..8566f17 100644 --- a/README.md +++ b/README.md @@ -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)) ) diff --git a/cran-comments.md b/cran-comments.md index ce814d3..51ddf76 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -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