diff --git a/dev/articles/extending-ggplot2_files/figure-html/unnamed-chunk-29-1.png b/dev/articles/extending-ggplot2_files/figure-html/unnamed-chunk-29-1.png index 1193de727d..7c669b4265 100644 Binary files a/dev/articles/extending-ggplot2_files/figure-html/unnamed-chunk-29-1.png and b/dev/articles/extending-ggplot2_files/figure-html/unnamed-chunk-29-1.png differ diff --git a/dev/articles/faq-faceting_files/figure-html/unnamed-chunk-14-1.png b/dev/articles/faq-faceting_files/figure-html/unnamed-chunk-14-1.png index 8194422279..0ada25cd4e 100644 Binary files a/dev/articles/faq-faceting_files/figure-html/unnamed-chunk-14-1.png and b/dev/articles/faq-faceting_files/figure-html/unnamed-chunk-14-1.png differ diff --git a/dev/articles/faq-faceting_files/figure-html/unnamed-chunk-15-1.png b/dev/articles/faq-faceting_files/figure-html/unnamed-chunk-15-1.png index c3cf0f3ec2..ba50297186 100644 Binary files a/dev/articles/faq-faceting_files/figure-html/unnamed-chunk-15-1.png and b/dev/articles/faq-faceting_files/figure-html/unnamed-chunk-15-1.png differ diff --git a/dev/articles/profiling.html b/dev/articles/profiling.html index 6b59c3faf1..143686246a 100644 --- a/dev/articles/profiling.html +++ b/dev/articles/profiling.html @@ -139,8 +139,8 @@

Thomas Lin profile <- profvis(for (i in seq_len(100)) ggplotGrob(p)) 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 5cf1ac564d..00b0be4625 100644 --- a/dev/pkgdown.yml +++ b/dev/pkgdown.yml @@ -12,7 +12,7 @@ articles: ggplot2-in-packages: ggplot2-in-packages.html ggplot2-specs: ggplot2-specs.html profiling: profiling.html -last_built: 2023-07-20T05:37Z +last_built: 2023-07-22T11:35Z urls: reference: https://ggplot2.tidyverse.org/reference article: https://ggplot2.tidyverse.org/articles diff --git a/dev/reference/annotate-1.png b/dev/reference/annotate-1.png index 1776b60ec1..5748841899 100644 Binary files a/dev/reference/annotate-1.png and b/dev/reference/annotate-1.png differ diff --git a/dev/reference/benchplot.html b/dev/reference/benchplot.html index d0ac160b45..521c6cd608 100644 --- a/dev/reference/benchplot.html +++ b/dev/reference/benchplot.html @@ -107,29 +107,29 @@

ArgumentsExamples

benchplot(ggplot(mtcars, aes(mpg, wt)) + geom_point())
 #>        step user.self sys.self elapsed
-#> 1 construct     0.003        0   0.004
-#> 2     build     0.021        0   0.020
-#> 3    render     0.029        0   0.029
-#> 4      draw     0.029        0   0.029
-#> 5     TOTAL     0.082        0   0.082
+#> 1 construct     0.005        0   0.005
+#> 2     build     0.035        0   0.035
+#> 3    render     0.038        0   0.038
+#> 4      draw     0.047        0   0.047
+#> 5     TOTAL     0.125        0   0.125
 benchplot(ggplot(mtcars, aes(mpg, wt)) + geom_point() + facet_grid(. ~ cyl))
 #>        step user.self sys.self elapsed
-#> 1 construct     0.004        0   0.004
-#> 2     build     0.042        0   0.042
-#> 3    render     0.075        0   0.074
-#> 4      draw     0.055        0   0.055
-#> 5     TOTAL     0.176        0   0.175
+#> 1 construct     0.005        0   0.006
+#> 2     build     0.052        0   0.052
+#> 3    render     0.108        0   0.108
+#> 4      draw     0.079        0   0.080
+#> 5     TOTAL     0.244        0   0.246
 
 # With tidy eval:
 p <- expr(ggplot(mtcars, aes(mpg, wt)) + geom_point())
 benchplot(!!p)
 
 #>        step user.self sys.self elapsed
-#> 1 construct     0.003        0   0.003
-#> 2     build     0.024        0   0.024
-#> 3    render     0.028        0   0.028
-#> 4      draw     0.032        0   0.032
-#> 5     TOTAL     0.087        0   0.087
+#> 1 construct     0.005        0   0.005
+#> 2     build     0.031        0   0.031
+#> 3    render     0.036        0   0.036
+#> 4      draw     0.039        0   0.039
+#> 5     TOTAL     0.111        0   0.111