From e9ca0c39fde10d3a70b8efb5091617d7e03dd5c3 Mon Sep 17 00:00:00 2001 From: teunbrand <49372158+teunbrand@users.noreply.github.com> Date: Fri, 13 Dec 2024 08:12:53 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20tidyvers?= =?UTF-8?q?e/ggplot2@b35cf638a932cbd234188e07fd0a768bd34084e8=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev/articles/ggplot2-specs.html | 5 +++++ dev/articles/profiling.html | 2 +- dev/pkgdown.yml | 2 +- dev/reference/benchplot.html | 20 ++++++++++---------- dev/reference/geom_point-10.png | Bin 42236 -> 71408 bytes dev/reference/geom_point-11.png | Bin 52045 -> 42236 bytes dev/reference/geom_point-12.png | Bin 31568 -> 52045 bytes dev/reference/geom_point-14.png | Bin 0 -> 31568 bytes dev/reference/geom_point.html | 16 ++++++++++++---- dev/reference/lims-6.png | Bin 97779 -> 98172 bytes dev/reference/lims-7.png | Bin 73887 -> 73793 bytes dev/reference/lims-8.png | Bin 93543 -> 93368 bytes dev/reference/scale_date-1.png | Bin 84060 -> 83908 bytes dev/reference/scale_date-2.png | Bin 81955 -> 81790 bytes dev/reference/scale_date-3.png | Bin 85481 -> 85412 bytes dev/reference/scale_date-4.png | Bin 55809 -> 55598 bytes dev/reference/summarise_plot.html | 14 +++++++------- dev/search.json | 2 +- 18 files changed, 37 insertions(+), 24 deletions(-) create mode 100644 dev/reference/geom_point-14.png diff --git a/dev/articles/ggplot2-specs.html b/dev/articles/ggplot2-specs.html index d354025caf..0eb348a134 100644 --- a/dev/articles/ggplot2-specs.html +++ b/dev/articles/ggplot2-specs.html @@ -338,6 +338,11 @@

Colour and fill geom_point(shape = 21, fill = "red") + scale_size_identity()

A plot showing a 4-by-4 grid of red points, the top 12 points with black outlines. The size of the points increases horizontally. The stroke of the outlines of the points increases vertically. A white diagonal line with a negative slope marks that the 'stroke' versus 'size' trade-off has similar total sizes.

+

Because points are not typically filled, you may need to change some +default settings when using these shapes and mapping fill. +In particular, discrete fill guides will be drawn with an +unfilled shape unless overridden (refer to geom_point() for +an example of this).

diff --git a/dev/articles/profiling.html b/dev/articles/profiling.html index cdb5554900..dde3338a01 100644 --- a/dev/articles/profiling.html +++ b/dev/articles/profiling.html @@ -130,7 +130,7 @@

Thomas Lin profile

-

In general, a minimal plot is used so that profiles are focused on +

In general, a minimal plot is used so that profiles are focused on low-level, general code, rather than implementations of specific geoms. This might be expanded at the point where improving performance of specific geoms becomes a focus. Further, the profile focuses on the diff --git a/dev/pkgdown.yml b/dev/pkgdown.yml index 264dc7b447..4475059a83 100644 --- a/dev/pkgdown.yml +++ b/dev/pkgdown.yml @@ -13,7 +13,7 @@ articles: ggplot2-specs: ggplot2-specs.html ggplot2: ggplot2.html profiling: profiling.html -last_built: 2024-12-12T09:01Z +last_built: 2024-12-13T08:04Z urls: reference: https://ggplot2.tidyverse.org/reference article: https://ggplot2.tidyverse.org/articles diff --git a/dev/reference/benchplot.html b/dev/reference/benchplot.html index 4adee41b73..9d8e5bf37f 100644 --- a/dev/reference/benchplot.html +++ b/dev/reference/benchplot.html @@ -91,17 +91,17 @@

ArgumentsExamples

benchplot(ggplot(mtcars, aes(mpg, wt)) + geom_point())
 #>        step user.self sys.self elapsed
-#> 1 construct     0.003        0   0.003
+#> 1 construct     0.002        0   0.002
 #> 2     build     0.019        0   0.019
 #> 3    render     0.020        0   0.020
-#> 4      draw     0.019        0   0.018
-#> 5     TOTAL     0.061        0   0.060
+#> 4      draw     0.018        0   0.018
+#> 5     TOTAL     0.059        0   0.059
 benchplot(ggplot(mtcars, aes(mpg, wt)) + geom_point() + facet_grid(. ~ cyl))
 #>        step user.self sys.self elapsed
 #> 1 construct     0.003        0   0.003
-#> 2     build     0.021        0   0.020
-#> 3    render     0.048        0   0.048
-#> 4      draw     0.032        0   0.032
+#> 2     build     0.020        0   0.021
+#> 3    render     0.048        0   0.047
+#> 4      draw     0.033        0   0.032
 #> 5     TOTAL     0.104        0   0.103
 
 # With tidy eval:
@@ -109,11 +109,11 @@ 

Examplesbenchplot(!!p) #> step user.self sys.self elapsed -#> 1 construct 0.002 0 0.002 +#> 1 construct 0.003 0 0.002 #> 2 build 0.019 0 0.019 -#> 3 render 0.020 0 0.020 -#> 4 draw 0.018 0 0.019 -#> 5 TOTAL 0.059 0 0.060 +#> 3 render 0.020 0 0.019 +#> 4 draw 0.019 0 0.018 +#> 5 TOTAL 0.061 0 0.058