diff --git a/dev/articles/profiling.html b/dev/articles/profiling.html index 6e0e243310..e4bc64ad6a 100644 --- a/dev/articles/profiling.html +++ b/dev/articles/profiling.html @@ -145,7 +145,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 44c489c0c2..bde74a8771 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-06-06T14:02Z +last_built: 2024-06-18T09:26Z 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 37d0b9395b..547f387be8 100644 --- a/dev/reference/benchplot.html +++ b/dev/reference/benchplot.html @@ -109,28 +109,28 @@

Examples
benchplot(ggplot(mtcars, aes(mpg, wt)) + geom_point())
 #>        step user.self sys.self elapsed
 #> 1 construct     0.003        0   0.004
-#> 2     build     0.018        0   0.018
-#> 3    render     0.019        0   0.018
-#> 4      draw     0.020        0   0.020
-#> 5     TOTAL     0.060        0   0.060
+#> 2     build     0.019        0   0.019
+#> 3    render     0.020        0   0.020
+#> 4      draw     0.021        0   0.021
+#> 5     TOTAL     0.063        0   0.064
 benchplot(ggplot(mtcars, aes(mpg, wt)) + geom_point() + facet_grid(. ~ cyl))
 #>        step user.self sys.self elapsed
-#> 1 construct     0.003        0   0.002
-#> 2     build     0.036        0   0.036
-#> 3    render     0.042        0   0.042
-#> 4      draw     0.035        0   0.035
-#> 5     TOTAL     0.116        0   0.115
+#> 1 construct     0.003        0   0.003
+#> 2     build     0.040        0   0.039
+#> 3    render     0.047        0   0.046
+#> 4      draw     0.037        0   0.037
+#> 5     TOTAL     0.127        0   0.125
 
 # With tidy eval:
 p <- expr(ggplot(mtcars, aes(mpg, wt)) + geom_point())
 benchplot(!!p)
 
 #>        step user.self sys.self elapsed
-#> 1 construct     0.002        0   0.002
-#> 2     build     0.017        0   0.017
-#> 3    render     0.018        0   0.018
-#> 4      draw     0.020        0   0.020
-#> 5     TOTAL     0.057        0   0.057
+#> 1 construct     0.003        0   0.002
+#> 2     build     0.019        0   0.019
+#> 3    render     0.021        0   0.020
+#> 4      draw     0.021        0   0.021
+#> 5     TOTAL     0.064        0   0.062