From 080e11924bec22de19057ae64231353bdd033cd9 Mon Sep 17 00:00:00 2001 From: Indrajeet Patil Date: Mon, 24 Jul 2023 10:48:18 +0200 Subject: [PATCH] bump vidffr and roxygen2 versions --- DESCRIPTION | 4 ++-- README.Rmd | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index e4cca60..51d1c17 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -36,8 +36,8 @@ Suggests: knitr, rmarkdown, testthat, - vdiffr (>= 1.0.2) + vdiffr (>= 1.0.5) Roxygen: list(markdown = TRUE, roclets = c("rd", "namespace", "collate")) -RoxygenNote: 7.2.2 +RoxygenNote: 7.2.3 Config/testthat/edition: 3 Config/testthat/parallel: true diff --git a/README.Rmd b/README.Rmd index 05cd69f..d41817c 100644 --- a/README.Rmd +++ b/README.Rmd @@ -134,8 +134,10 @@ ggplot(iris, aes(x = Species, y = Sepal.Width, fill = Petal.Width > 1)) + ```{r faceted_simple} ggplot(diamonds, aes(x = cut, y = carat)) + geom_boxplot(aes(fill = color)) + - geom_signif(comparisons = list(c("Fair", "Good"), - c("Very Good", "Ideal"))) + + geom_signif(comparisons = list( + c("Fair", "Good"), + c("Very Good", "Ideal") + )) + facet_wrap(~color) + ylim(NA, 6.3) ```