diff --git a/dev/articles/ggplot2-in-packages_files/figure-html/unnamed-chunk-3-1.png b/dev/articles/ggplot2-in-packages_files/figure-html/unnamed-chunk-3-1.png index d377c6656d..2b19206d08 100644 Binary files a/dev/articles/ggplot2-in-packages_files/figure-html/unnamed-chunk-3-1.png and b/dev/articles/ggplot2-in-packages_files/figure-html/unnamed-chunk-3-1.png differ diff --git a/dev/articles/ggplot2-in-packages_files/figure-html/unnamed-chunk-5-1.png b/dev/articles/ggplot2-in-packages_files/figure-html/unnamed-chunk-5-1.png index d377c6656d..2b19206d08 100644 Binary files a/dev/articles/ggplot2-in-packages_files/figure-html/unnamed-chunk-5-1.png and b/dev/articles/ggplot2-in-packages_files/figure-html/unnamed-chunk-5-1.png differ diff --git a/dev/articles/profiling.html b/dev/articles/profiling.html index c8b1e6e435..365c73dbd5 100644 --- a/dev/articles/profiling.html +++ b/dev/articles/profiling.html @@ -130,7 +130,7 @@
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 76a7201972..5a16982fcd 100644 --- a/dev/news/index.html +++ b/dev/news/index.html @@ -67,7 +67,10 @@
Theme margins can have NA-units to inherit from parent elements. The new function margin_part()
has NA-units as default (@teunbrand, #6115)
Reversal of a dimension, typically ‘x’ or ‘y’, is now controlled by the reverse
argument in coord_cartesian()
, coord_fixed()
, coord_radial()
and coord_sf()
. In coord_radial()
, this replaces the older direction
argument (#4021, @teunbrand).
coord_radial()
displays minor gridlines now (@teunbrand).
(internal) continuous_scale()
and binned_scale()
sort the limits
argument internally (@teunbrand).
Theme margins can have NA-units to inherit from parent elements. The new function margin_part()
has NA-units as default (@teunbrand, #6115)
New margin_auto()
specification for theme margins.
New argument labs(dictionary)
to label based on variable name rather than based on aesthetic (@teunbrand, #5178)
Fixed bug in out-of-bounds binned breaks (@teunbrand, #6054)
benchplot(ggplot(mtcars, aes(mpg, wt)) + geom_point())
#> step user.self sys.self elapsed
-#> 1 construct 0.002 0 0.003
-#> 2 build 0.019 0 0.019
-#> 3 render 0.019 0 0.018
-#> 4 draw 0.019 0 0.019
-#> 5 TOTAL 0.059 0 0.059
+#> 1 construct 0.002 0 0.002
+#> 2 build 0.020 0 0.020
+#> 3 render 0.019 0 0.019
+#> 4 draw 0.019 0 0.018
+#> 5 TOTAL 0.060 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.002
+#> 1 construct 0.003 0 0.003
#> 2 build 0.020 0 0.020
-#> 3 render 0.045 0 0.045
-#> 4 draw 0.033 0 0.034
-#> 5 TOTAL 0.101 0 0.101
+#> 3 render 0.048 0 0.048
+#> 4 draw 0.033 0 0.033
+#> 5 TOTAL 0.104 0 0.104
# With tidy eval:
p <- expr(ggplot(mtcars, aes(mpg, wt)) + geom_point())
@@ -111,9 +111,9 @@ Examples#> step user.self sys.self elapsed
#> 1 construct 0.002 0 0.002
#> 2 build 0.019 0 0.019
-#> 3 render 0.019 0 0.019
-#> 4 draw 0.019 0 0.018
-#> 5 TOTAL 0.059 0 0.058
+#> 3 render 0.020 0 0.020
+#> 4 draw 0.019 0 0.019
+#> 5 TOTAL 0.060 0 0.060