diff --git a/dev/articles/profiling.html b/dev/articles/profiling.html index 82f235e384..52ebd7a769 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/news/index.html b/dev/news/index.html index 7966a1b640..11f40ba870 100644 --- a/dev/news/index.html +++ b/dev/news/index.html @@ -139,6 +139,7 @@

stat_bin(), the default boundary is now chosen to better adhere to the nbin argument (@teunbrand, #5882, #5036)

  • after_stat() and after_scale() throw warnings when the computed aesthetics are not of the correct length (#5901).

  • geom_hline() and geom_vline() now have position argument (@yutannihilation, #4285).

  • +
  • New function get_strip_labels() to retrieve facet labels (@teunbrand, #4979)

  • ggplot2 3.5.1

    CRAN release: 2024-04-23

    diff --git a/dev/pkgdown.yml b/dev/pkgdown.yml index b2000ed950..7b58f11b4f 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-07-11T18:05Z +last_built: 2024-07-11T18:19Z 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 e8fd51283e..665a894c76 100644 --- a/dev/reference/benchplot.html +++ b/dev/reference/benchplot.html @@ -92,17 +92,17 @@

    Examples
    benchplot(ggplot(mtcars, aes(mpg, wt)) + geom_point())
     #>        step user.self sys.self elapsed
     #> 1 construct     0.002        0   0.002
    -#> 2     build     0.018        0   0.018
    +#> 2     build     0.017        0   0.017
     #> 3    render     0.019        0   0.019
    -#> 4      draw     0.020        0   0.020
    -#> 5     TOTAL     0.059        0   0.059
    +#> 4      draw     0.019        0   0.019
    +#> 5     TOTAL     0.057        0   0.057
     benchplot(ggplot(mtcars, aes(mpg, wt)) + geom_point() + facet_grid(. ~ cyl))
     #>        step user.self sys.self elapsed
    -#> 1 construct     0.003        0   0.002
    +#> 1 construct     0.002        0   0.002
     #> 2     build     0.020        0   0.020
    -#> 3    render     0.044        0   0.044
    +#> 3    render     0.043        0   0.043
     #> 4      draw     0.035        0   0.035
    -#> 5     TOTAL     0.102        0   0.101
    +#> 5     TOTAL     0.100        0   0.100
     
     # With tidy eval:
     p <- expr(ggplot(mtcars, aes(mpg, wt)) + geom_point())
    @@ -110,10 +110,10 @@ 

    Examples #> step user.self sys.self elapsed #> 1 construct 0.002 0 0.002 -#> 2 build 0.017 0 0.018 +#> 2 build 0.018 0 0.018 #> 3 render 0.019 0 0.019 #> 4 draw 0.020 0 0.020 -#> 5 TOTAL 0.058 0 0.059 +#> 5 TOTAL 0.059 0 0.059