From 507cacdc5055f8de968db498a5d6297a2756cc5e Mon Sep 17 00:00:00 2001 From: "Simon P. Couch" Date: Fri, 1 Jul 2022 07:43:32 -0400 Subject: [PATCH] v1.0.0 (#1108) --- DESCRIPTION | 2 +- NEWS.md | 1 - R/cluster-tidiers.R | 1 + R/spdep-tidiers.R | 1 + R/stats-kmeans-tidiers.R | 3 +-- cran-comments.md | 2 +- man/tidy.kmeans.Rd | 3 --- 7 files changed, 5 insertions(+), 8 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 239a43075..7b290ee2a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: broom Title: Convert Statistical Objects into Tidy Tibbles -Version: 0.8.0.9000 +Version: 1.0.0 Authors@R: c(person(given = "David", family = "Robinson", diff --git a/NEWS.md b/NEWS.md index 1c65a81e6..240637d6c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -685,7 +685,6 @@ supportive and insightful and I look forward to working you all again! [@ellessenne](https://github.com/ellessenne), [@erleholgersen](https://github.com/erleholgersen), [@ethchr](https://github.com/ethchr), -[@Hong-Revo](https://github.com/Hong-Revo), [@huftis](https://github.com/huftis), [@IndrajeetPatil](https://github.com/IndrajeetPatil), [@jacob-long](https://github.com/jacob-long), diff --git a/R/cluster-tidiers.R b/R/cluster-tidiers.R index 32c12ab37..446580ce8 100644 --- a/R/cluster-tidiers.R +++ b/R/cluster-tidiers.R @@ -24,6 +24,7 @@ #' @export #' @seealso [tidy()], [cluster::pam()] #' @family pam tidiers +# skip running examples - occasionally over CRAN check time limit #' @examplesIf (rlang::is_installed("cluster") & rlang::is_installed("modeldata")) #' #' # load libraries for models and data diff --git a/R/spdep-tidiers.R b/R/spdep-tidiers.R index 67369340c..624b85f39 100644 --- a/R/spdep-tidiers.R +++ b/R/spdep-tidiers.R @@ -10,6 +10,7 @@ #' #' @evalRd return_tidy(regression = TRUE) #' +# skip running examples - occasionally over CRAN check time limit #' @examplesIf (rlang::is_installed("spdep") & rlang::is_installed("spatialreg")) #' #' diff --git a/R/stats-kmeans-tidiers.R b/R/stats-kmeans-tidiers.R index 29762ce21..d6ed8f25d 100644 --- a/R/stats-kmeans-tidiers.R +++ b/R/stats-kmeans-tidiers.R @@ -8,6 +8,7 @@ #' #' @evalRd return_tidy("size", "withinss", "cluster") #' +# skip running examples - occasionally over CRAN check time limit #' @examplesIf (rlang::is_installed("cluster") & rlang::is_installed("modeldata")) #' #' library(cluster) @@ -23,8 +24,6 @@ #' tidy(fit) #' glance(fit) #' augment(fit, x) -#' -#' @details For examples, see the kmeans vignette. #' #' @aliases kmeans_tidiers #' @export diff --git a/cran-comments.md b/cran-comments.md index 99189bc81..fbaa3aeee 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -6,7 +6,7 @@ # Reverse dependencies -We checked 199 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package. +We checked 203 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package. * We saw 0 new problems * We failed to check 0 packages diff --git a/man/tidy.kmeans.Rd b/man/tidy.kmeans.Rd index d3d3272c6..bb512e035 100644 --- a/man/tidy.kmeans.Rd +++ b/man/tidy.kmeans.Rd @@ -34,9 +34,6 @@ model component varies across models but is usually self-evident. If a model has several distinct types of components, you will need to specify which components to return. } -\details{ -For examples, see the kmeans vignette. -} \examples{ \dontshow{if ((rlang::is_installed("cluster") & rlang::is_installed("modeldata"))) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf}