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 698d86f86a..dc205e1d57 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 3bab5bf58b..3d41e2003b 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 07c434cf73..554e01d424 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 a8e811f8db..ae115ef784 100644 --- a/dev/articles/profiling.html +++ b/dev/articles/profiling.html @@ -142,8 +142,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 32a90683d1..bf623f6859 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: 2023-09-22T14:23Z +last_built: 2023-10-02T08:51Z 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 1df17e49c6..b8466ae886 100644 --- a/dev/reference/benchplot.html +++ b/dev/reference/benchplot.html @@ -110,29 +110,29 @@

ArgumentsExamples

benchplot(ggplot(mtcars, aes(mpg, wt)) + geom_point())
 #>        step user.self sys.self elapsed
-#> 1 construct     0.004        0   0.004
-#> 2     build     0.020        0   0.020
-#> 3    render     0.026        0   0.026
-#> 4      draw     0.027        0   0.028
-#> 5     TOTAL     0.077        0   0.078
+#> 1 construct     0.003        0   0.004
+#> 2     build     0.020        0   0.019
+#> 3    render     0.024        0   0.023
+#> 4      draw     0.029        0   0.029
+#> 5     TOTAL     0.076        0   0.075
 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.039        0   0.039
-#> 3    render     0.066        0   0.067
-#> 4      draw     0.048        0   0.048
-#> 5     TOTAL     0.157        0   0.158
+#> 1 construct     0.004        0   0.003
+#> 2     build     0.037        0   0.036
+#> 3    render     0.068        0   0.067
+#> 4      draw     0.046        0   0.046
+#> 5     TOTAL     0.155        0   0.152
 
 # 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.019        0   0.020
-#> 3    render     0.026        0   0.026
-#> 4      draw     0.027        0   0.027
-#> 5     TOTAL     0.075        0   0.076
+#> 1 construct     0.003        0   0.002
+#> 2     build     0.022        0   0.021
+#> 3    render     0.024        0   0.024
+#> 4      draw     0.026        0   0.025
+#> 5     TOTAL     0.075        0   0.072