diff --git a/404.html b/404.html index 4a313038..f538cc6d 100644 --- a/404.html +++ b/404.html @@ -39,7 +39,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/CODE_OF_CONDUCT.html b/CODE_OF_CONDUCT.html index 6cadf973..58f990a9 100644 --- a/CODE_OF_CONDUCT.html +++ b/CODE_OF_CONDUCT.html @@ -17,7 +17,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/LICENSE-text.html b/LICENSE-text.html index 804458b5..47091c65 100644 --- a/LICENSE-text.html +++ b/LICENSE-text.html @@ -17,7 +17,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/LICENSE.html b/LICENSE.html index ef82f029..121db177 100644 --- a/LICENSE.html +++ b/LICENSE.html @@ -17,7 +17,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/authors.html b/authors.html index 3a06f1f7..987556ea 100644 --- a/authors.html +++ b/authors.html @@ -17,7 +17,7 @@ ggforce - 0.5.0 + 0.4.2 @@ -91,13 +91,13 @@

Citation

Pedersen T (2024). ggforce: Accelerating 'ggplot2'. -R package version 0.5.0, https://github.com/thomasp85/ggforce, https://ggforce.data-imaginist.com. +R package version 0.4.2, https://github.com/thomasp85/ggforce, https://ggforce.data-imaginist.com.

@Manual{,
   title = {ggforce: Accelerating 'ggplot2'},
   author = {Thomas Lin Pedersen},
   year = {2024},
-  note = {R package version 0.5.0, https://github.com/thomasp85/ggforce},
+  note = {R package version 0.4.2, https://github.com/thomasp85/ggforce},
   url = {https://ggforce.data-imaginist.com},
 }
diff --git a/index.html b/index.html index b7ac3ed0..c828b7ef 100644 --- a/index.html +++ b/index.html @@ -44,7 +44,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/news/index.html b/news/index.html index 94d26471..7c6835e3 100644 --- a/news/index.html +++ b/news/index.html @@ -17,7 +17,7 @@ ggforce - 0.5.0 + 0.4.2 @@ -72,18 +72,8 @@

Changelog

- -
diff --git a/pkgdown.yml b/pkgdown.yml index 4ece881a..409a5213 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -2,7 +2,7 @@ pandoc: 2.19.2 pkgdown: 2.0.7 pkgdown_sha: ~ articles: {} -last_built: 2024-02-01T07:32Z +last_built: 2024-02-19T10:58Z urls: reference: https://ggforce.data-imaginist.com/reference article: https://ggforce.data-imaginist.com/articles diff --git a/reference/facet_grid_paginate.html b/reference/facet_grid_paginate.html index aeb19f02..409e7374 100644 --- a/reference/facet_grid_paginate.html +++ b/reference/facet_grid_paginate.html @@ -21,7 +21,7 @@ ggforce - 0.5.0 + 0.4.2
diff --git a/reference/facet_matrix.html b/reference/facet_matrix.html index 41161219..03534361 100644 --- a/reference/facet_matrix.html +++ b/reference/facet_matrix.html @@ -26,7 +26,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/facet_row.html b/reference/facet_row.html index 4bf13ec6..0f010cfd 100644 --- a/reference/facet_row.html +++ b/reference/facet_row.html @@ -25,7 +25,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/facet_stereo.html b/reference/facet_stereo.html index 14bb42ea..fbffe59c 100644 --- a/reference/facet_stereo.html +++ b/reference/facet_stereo.html @@ -31,7 +31,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/facet_wrap_paginate.html b/reference/facet_wrap_paginate.html index 8182d6af..ae31839f 100644 --- a/reference/facet_wrap_paginate.html +++ b/reference/facet_wrap_paginate.html @@ -21,7 +21,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/facet_zoom.html b/reference/facet_zoom.html index 7a6cffb4..108921b7 100644 --- a/reference/facet_zoom.html +++ b/reference/facet_zoom.html @@ -21,7 +21,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/figures/README-example-1.png b/reference/figures/README-example-1.png index c4de7686..6fb06a88 100644 Binary files a/reference/figures/README-example-1.png and b/reference/figures/README-example-1.png differ diff --git a/reference/gather_set_data.html b/reference/gather_set_data.html index 208ddb62..7f5306b2 100644 --- a/reference/gather_set_data.html +++ b/reference/gather_set_data.html @@ -18,7 +18,7 @@ ggforce - 0.5.0 + 0.4.2 @@ -108,21 +108,13 @@

Value

Examples

data <- reshape2::melt(Titanic)
 head(gather_set_data(data, 1:4))
-#>   Class    Sex   Age Survived value id     x    y
-#> 1   1st   Male Child       No     0  1 Class  1st
-#> 2   2nd   Male Child       No     0  2 Class  2nd
-#> 3   3rd   Male Child       No    35  3 Class  3rd
-#> 4  Crew   Male Child       No     0  4 Class Crew
-#> 5   1st Female Child       No     0  5 Class  1st
-#> 6   2nd Female Child       No     0  6 Class  2nd
-head(gather_set_data(data, c("Class","Sex","Age","Survived")))
-#>   Class    Sex   Age Survived value id     x    y
-#> 1   1st   Male Child       No     0  1 Class  1st
-#> 2   2nd   Male Child       No     0  2 Class  2nd
-#> 3   3rd   Male Child       No    35  3 Class  3rd
-#> 4  Crew   Male Child       No     0  4 Class Crew
-#> 5   1st Female Child       No     0  5 Class  1st
-#> 6   2nd Female Child       No     0  6 Class  2nd
+#>   Class    Sex   Age Survived value id x    y
+#> 1   1st   Male Child       No     0  1 1  1st
+#> 2   2nd   Male Child       No     0  2 1  2nd
+#> 3   3rd   Male Child       No    35  3 1  3rd
+#> 4  Crew   Male Child       No     0  4 1 Crew
+#> 5   1st Female Child       No     0  5 1  1st
+#> 6   2nd Female Child       No     0  6 1  2nd
 
diff --git a/reference/geom_arc.html b/reference/geom_arc.html index 2ad09c22..13b9336d 100644 --- a/reference/geom_arc.html +++ b/reference/geom_arc.html @@ -21,7 +21,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_arc_bar.html b/reference/geom_arc_bar.html index d43394a4..d397ddba 100644 --- a/reference/geom_arc_bar.html +++ b/reference/geom_arc_bar.html @@ -19,7 +19,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_autohistogram-2.png b/reference/geom_autohistogram-2.png index 13e2bfcf..02169a6c 100644 Binary files a/reference/geom_autohistogram-2.png and b/reference/geom_autohistogram-2.png differ diff --git a/reference/geom_autohistogram.html b/reference/geom_autohistogram.html index 848ae6ad..d1195a36 100644 --- a/reference/geom_autohistogram.html +++ b/reference/geom_autohistogram.html @@ -22,7 +22,7 @@ ggforce - 0.5.0 + 0.4.2 @@ -240,6 +240,12 @@

Examples

# Diagonal histograms p + geom_autohistogram() +#> Warning: Computation failed in `stat_autobin()` +#> Caused by error in `compute_group()`: +#> ! unused argument (width = NULL) +#> Warning: Computation failed in `stat_autobin()` +#> Caused by error in `compute_group()`: +#> ! unused argument (width = NULL) # Diagonal density distributions diff --git a/reference/geom_autopoint.html b/reference/geom_autopoint.html index f0f8fee3..fac90e31 100644 --- a/reference/geom_autopoint.html +++ b/reference/geom_autopoint.html @@ -20,7 +20,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_bezier.html b/reference/geom_bezier.html index 4dfb1e65..d8991391 100644 --- a/reference/geom_bezier.html +++ b/reference/geom_bezier.html @@ -24,7 +24,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_bspline.html b/reference/geom_bspline.html index 724bbeba..1efe5d32 100644 --- a/reference/geom_bspline.html +++ b/reference/geom_bspline.html @@ -24,7 +24,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_bspline_closed.html b/reference/geom_bspline_closed.html index b67758e1..8a4ca6df 100644 --- a/reference/geom_bspline_closed.html +++ b/reference/geom_bspline_closed.html @@ -21,7 +21,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_circle.html b/reference/geom_circle.html index 15e6c899..11d23cbe 100644 --- a/reference/geom_circle.html +++ b/reference/geom_circle.html @@ -22,7 +22,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_delvor.html b/reference/geom_delvor.html index e49ec1ec..a7c3a7c3 100644 --- a/reference/geom_delvor.html +++ b/reference/geom_delvor.html @@ -20,7 +20,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_diagonal.html b/reference/geom_diagonal.html index 4a68f89c..90ab4418 100644 --- a/reference/geom_diagonal.html +++ b/reference/geom_diagonal.html @@ -23,7 +23,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_diagonal_wide.html b/reference/geom_diagonal_wide.html index cfa83ab9..b0803ff8 100644 --- a/reference/geom_diagonal_wide.html +++ b/reference/geom_diagonal_wide.html @@ -20,7 +20,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_ellipse.html b/reference/geom_ellipse.html index d37677e3..292afba4 100644 --- a/reference/geom_ellipse.html +++ b/reference/geom_ellipse.html @@ -22,7 +22,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_link.html b/reference/geom_link.html index e9780cf2..0def53a9 100644 --- a/reference/geom_link.html +++ b/reference/geom_link.html @@ -26,7 +26,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_mark_circle.html b/reference/geom_mark_circle.html index 2f2cc392..08746364 100644 --- a/reference/geom_mark_circle.html +++ b/reference/geom_mark_circle.html @@ -21,7 +21,7 @@ ggforce - 0.5.0 + 0.4.2 @@ -217,16 +217,13 @@

Arguments

label.fill
-

The fill colour for the annotation box. Use "inherit" to -use the fill from the enclosure or "inherit_col" to use the border colour -of the enclosure.

+

The fill colour for the annotation box.

label.colour

The text colour for the annotation. If it contains two elements the first will be used for the label and the second for the -description. Use "inherit" to use the border colour of the enclosure or -"inherit_fill" to use the fill colour from the enclosure.

+description.

label.buffer
@@ -236,13 +233,11 @@

Arguments

con.colour

The colour for the line connecting the annotation to the -mark. Use "inherit" to use the border colour of the enclosure or -"inherit_fill" to use the fill colour from the enclosure.

+mark.

con.size
-

The width of the connector. Use "inherit" to use the border -width of the enclosure.

+

The width of the connector.

con.type
@@ -251,8 +246,7 @@

Arguments

con.linetype
-

The linetype of the connector. Use "inherit" to use the -border linetype of the enclosure.

+

The linetype of the connector.

con.border
@@ -394,15 +388,6 @@

Examples

con.cap = 0) + geom_point() - -# If you want to use the scaled colours for the labels or connectors you can -# use the "inherit" keyword instead -ggplot(iris, aes(Petal.Length, Petal.Width)) + - geom_mark_circle(aes(fill = Species, label = Species), - label.fill = "inherit") + - geom_point() - - diff --git a/reference/geom_mark_ellipse-1.png b/reference/geom_mark_ellipse-1.png index 4bbc3bf1..e51df651 100644 Binary files a/reference/geom_mark_ellipse-1.png and b/reference/geom_mark_ellipse-1.png differ diff --git a/reference/geom_mark_ellipse.html b/reference/geom_mark_ellipse.html index d8ba5a2b..554d771a 100644 --- a/reference/geom_mark_ellipse.html +++ b/reference/geom_mark_ellipse.html @@ -24,7 +24,7 @@ ggforce - 0.5.0 + 0.4.2 @@ -229,16 +229,13 @@

Arguments

label.fill
-

The fill colour for the annotation box. Use "inherit" to -use the fill from the enclosure or "inherit_col" to use the border colour -of the enclosure.

+

The fill colour for the annotation box.

label.colour

The text colour for the annotation. If it contains two elements the first will be used for the label and the second for the -description. Use "inherit" to use the border colour of the enclosure or -"inherit_fill" to use the fill colour from the enclosure.

+description.

label.buffer
@@ -248,13 +245,11 @@

Arguments

con.colour

The colour for the line connecting the annotation to the -mark. Use "inherit" to use the border colour of the enclosure or -"inherit_fill" to use the fill colour from the enclosure.

+mark.

con.size
-

The width of the connector. Use "inherit" to use the border -width of the enclosure.

+

The width of the connector.

con.type
@@ -263,8 +258,7 @@

Arguments

con.linetype
-

The linetype of the connector. Use "inherit" to use the -border linetype of the enclosure.

+

The linetype of the connector.

con.border
@@ -406,14 +400,6 @@

Examples

con.cap = 0) + geom_point() - -# If you want to use the scaled colours for the labels or connectors you can -# use the "inherit" keyword instead -ggplot(iris, aes(Petal.Length, Petal.Width)) + - geom_mark_ellipse(aes(fill = Species, label = Species), - label.fill = "inherit") + - geom_point() - diff --git a/reference/geom_mark_hull-1.png b/reference/geom_mark_hull-1.png index d8cde6ef..b35e8c6f 100644 Binary files a/reference/geom_mark_hull-1.png and b/reference/geom_mark_hull-1.png differ diff --git a/reference/geom_mark_hull-2.png b/reference/geom_mark_hull-2.png index fa909bb6..9d687e89 100644 Binary files a/reference/geom_mark_hull-2.png and b/reference/geom_mark_hull-2.png differ diff --git a/reference/geom_mark_hull-3.png b/reference/geom_mark_hull-3.png index 6c0c53c0..723a5b2f 100644 Binary files a/reference/geom_mark_hull-3.png and b/reference/geom_mark_hull-3.png differ diff --git a/reference/geom_mark_hull-4.png b/reference/geom_mark_hull-4.png index f5072217..39a4db4f 100644 Binary files a/reference/geom_mark_hull-4.png and b/reference/geom_mark_hull-4.png differ diff --git a/reference/geom_mark_hull-5.png b/reference/geom_mark_hull-5.png index 28930257..1eeafd2d 100644 Binary files a/reference/geom_mark_hull-5.png and b/reference/geom_mark_hull-5.png differ diff --git a/reference/geom_mark_hull-6.png b/reference/geom_mark_hull-6.png index db1f41e8..5a41663f 100644 Binary files a/reference/geom_mark_hull-6.png and b/reference/geom_mark_hull-6.png differ diff --git a/reference/geom_mark_hull-7.png b/reference/geom_mark_hull-7.png index 0e56e991..02a1c2de 100644 Binary files a/reference/geom_mark_hull-7.png and b/reference/geom_mark_hull-7.png differ diff --git a/reference/geom_mark_hull.html b/reference/geom_mark_hull.html index 737d9193..b2a895f6 100644 --- a/reference/geom_mark_hull.html +++ b/reference/geom_mark_hull.html @@ -24,7 +24,7 @@ ggforce - 0.5.0 + 0.4.2 @@ -224,16 +224,13 @@

Arguments

label.fill
-

The fill colour for the annotation box. Use "inherit" to -use the fill from the enclosure or "inherit_col" to use the border colour -of the enclosure.

+

The fill colour for the annotation box.

label.colour

The text colour for the annotation. If it contains two elements the first will be used for the label and the second for the -description. Use "inherit" to use the border colour of the enclosure or -"inherit_fill" to use the fill colour from the enclosure.

+description.

label.buffer
@@ -243,13 +240,11 @@

Arguments

con.colour

The colour for the line connecting the annotation to the -mark. Use "inherit" to use the border colour of the enclosure or -"inherit_fill" to use the fill colour from the enclosure.

+mark.

con.size
-

The width of the connector. Use "inherit" to use the border -width of the enclosure.

+

The width of the connector.

con.type
@@ -258,8 +253,7 @@

Arguments

con.linetype
-

The linetype of the connector. Use "inherit" to use the -border linetype of the enclosure.

+

The linetype of the connector.

con.border
@@ -362,7 +356,8 @@

See also

Examples

-
ggplot(iris, aes(Petal.Length, Petal.Width)) +
+    
## requires the concaveman packages
+ggplot(iris, aes(Petal.Length, Petal.Width)) +
   geom_mark_hull(aes(fill = Species, filter = Species != 'versicolor')) +
   geom_point()
 
@@ -416,15 +411,6 @@ 

Examples

con.cap = 0) + geom_point() - -# If you want to use the scaled colours for the labels or connectors you can -# use the "inherit" keyword instead -ggplot(iris, aes(Petal.Length, Petal.Width)) + - geom_mark_hull(aes(fill = Species, label = Species), - label.fill = "inherit") + - geom_point() - -
diff --git a/reference/geom_mark_rect.html b/reference/geom_mark_rect.html index 2d2f5685..52cd0d23 100644 --- a/reference/geom_mark_rect.html +++ b/reference/geom_mark_rect.html @@ -19,7 +19,7 @@ ggforce - 0.5.0 + 0.4.2 @@ -208,16 +208,13 @@

Arguments

label.fill
-

The fill colour for the annotation box. Use "inherit" to -use the fill from the enclosure or "inherit_col" to use the border colour -of the enclosure.

+

The fill colour for the annotation box.

label.colour

The text colour for the annotation. If it contains two elements the first will be used for the label and the second for the -description. Use "inherit" to use the border colour of the enclosure or -"inherit_fill" to use the fill colour from the enclosure.

+description.

label.buffer
@@ -227,13 +224,11 @@

Arguments

con.colour

The colour for the line connecting the annotation to the -mark. Use "inherit" to use the border colour of the enclosure or -"inherit_fill" to use the fill colour from the enclosure.

+mark.

con.size
-

The width of the connector. Use "inherit" to use the border -width of the enclosure.

+

The width of the connector.

con.type
@@ -242,8 +237,7 @@

Arguments

con.linetype
-

The linetype of the connector. Use "inherit" to use the -border linetype of the enclosure.

+

The linetype of the connector.

con.border
@@ -385,14 +379,6 @@

Examples

con.cap = 0) + geom_point() - -# If you want to use the scaled colours for the labels or connectors you can -# use the "inherit" keyword instead -ggplot(iris, aes(Petal.Length, Petal.Width)) + - geom_mark_rect(aes(fill = Species, label = Species), - label.fill = "inherit") + - geom_point() -
diff --git a/reference/geom_parallel_sets-1.png b/reference/geom_parallel_sets-1.png index 04a9ddf5..b5b39a41 100644 Binary files a/reference/geom_parallel_sets-1.png and b/reference/geom_parallel_sets-1.png differ diff --git a/reference/geom_parallel_sets-2.png b/reference/geom_parallel_sets-2.png index 03553f7b..20da0d13 100644 Binary files a/reference/geom_parallel_sets-2.png and b/reference/geom_parallel_sets-2.png differ diff --git a/reference/geom_parallel_sets.html b/reference/geom_parallel_sets.html index 2de35424..74ca0c02 100644 --- a/reference/geom_parallel_sets.html +++ b/reference/geom_parallel_sets.html @@ -20,7 +20,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_regon.html b/reference/geom_regon.html index 5e57a41f..06f94f12 100644 --- a/reference/geom_regon.html +++ b/reference/geom_regon.html @@ -21,7 +21,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_shape.html b/reference/geom_shape.html index ff4e6ff0..5f31f7d7 100644 --- a/reference/geom_shape.html +++ b/reference/geom_shape.html @@ -24,7 +24,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_sina.html b/reference/geom_sina.html index d5201eb2..baceb18b 100644 --- a/reference/geom_sina.html +++ b/reference/geom_sina.html @@ -20,7 +20,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/geom_spiro.html b/reference/geom_spiro.html index 435151e5..74afaa20 100644 --- a/reference/geom_spiro.html +++ b/reference/geom_spiro.html @@ -21,7 +21,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/ggforce-extensions.html b/reference/ggforce-extensions.html index c732b2df..682cd7bf 100644 --- a/reference/ggforce-extensions.html +++ b/reference/ggforce-extensions.html @@ -20,7 +20,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/ggforce-package.html b/reference/ggforce-package.html index acf3290e..89cf2f47 100644 --- a/reference/ggforce-package.html +++ b/reference/ggforce-package.html @@ -18,7 +18,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/index.html b/reference/index.html index 646a9539..22edd3d0 100644 --- a/reference/index.html +++ b/reference/index.html @@ -17,7 +17,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/interpolateDataFrame.html b/reference/interpolateDataFrame.html index 6dd42443..fa79e797 100644 --- a/reference/interpolateDataFrame.html +++ b/reference/interpolateDataFrame.html @@ -17,7 +17,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/label_tex.html b/reference/label_tex.html index 60c1d6af..cfbaf192 100644 --- a/reference/label_tex.html +++ b/reference/label_tex.html @@ -18,7 +18,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/linear_trans.html b/reference/linear_trans.html index 247ced6d..72c1a562 100644 --- a/reference/linear_trans.html +++ b/reference/linear_trans.html @@ -21,7 +21,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/n_pages.html b/reference/n_pages.html index a05da174..6eb2fc7b 100644 --- a/reference/n_pages.html +++ b/reference/n_pages.html @@ -20,7 +20,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/position_auto.html b/reference/position_auto.html index 1fdb4aec..c28065b0 100644 --- a/reference/position_auto.html +++ b/reference/position_auto.html @@ -23,7 +23,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/position_jitternormal.html b/reference/position_jitternormal.html index 6dbfaaad..c4ffc7f6 100644 --- a/reference/position_jitternormal.html +++ b/reference/position_jitternormal.html @@ -20,7 +20,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/power_trans.html b/reference/power_trans.html index 2e69d079..f6b64a06 100644 --- a/reference/power_trans.html +++ b/reference/power_trans.html @@ -18,7 +18,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/radial_trans.html b/reference/radial_trans.html index 82ff8737..56c11b24 100644 --- a/reference/radial_trans.html +++ b/reference/radial_trans.html @@ -25,7 +25,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/scale_depth.html b/reference/scale_depth.html index 270e99bf..be3e838a 100644 --- a/reference/scale_depth.html +++ b/reference/scale_depth.html @@ -24,7 +24,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/scale_unit.html b/reference/scale_unit.html index 74424fb7..e7da142c 100644 --- a/reference/scale_unit.html +++ b/reference/scale_unit.html @@ -19,7 +19,7 @@ ggforce - 0.5.0 + 0.4.2 @@ -89,7 +89,7 @@

Position scales for units data

Arguments

...
-

Passed on to units::scale_x_units() or units::scale_y_units()

+

Passed on to units::scale_x_unit() or units::scale_y_unit()

diff --git a/reference/stat_err.html b/reference/stat_err.html index 30af3f16..d343f1e7 100644 --- a/reference/stat_err.html +++ b/reference/stat_err.html @@ -18,7 +18,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/theme_no_axes.html b/reference/theme_no_axes.html index d696503e..72bffd2f 100644 --- a/reference/theme_no_axes.html +++ b/reference/theme_no_axes.html @@ -19,7 +19,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/reference/trans_reverser.html b/reference/trans_reverser.html index e738e104..9ef66dda 100644 --- a/reference/trans_reverser.html +++ b/reference/trans_reverser.html @@ -20,7 +20,7 @@ ggforce - 0.5.0 + 0.4.2 diff --git a/sitemap.xml b/sitemap.xml index d91e64e9..5665b85f 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -147,9 +147,6 @@ https://ggforce.data-imaginist.com/reference/scale_unit.html - - https://ggforce.data-imaginist.com/reference/shapeGrob.html - https://ggforce.data-imaginist.com/reference/stat_err.html