feat!: Update geoms to more closely match ggplot2 v3.5.1 #118
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
lineend
andlinejoin
parameters. This matches a similar upstream change in ggplot2 3.4.0.geom_area_pattern()
andgeom_ribbon_pattern()
now acceptoutline.type = "lower"
andoutline.type = "full"
.geom_density_pattern()
now exposes theoutline.type
parameter.geom_boxplot_pattern()
now accept theoutliers
andstaplewidth
parameters. Theoutliers
andstaplewidth
parameters were added togeom_boxplot()
in ggplot2 3.5.0.geom_sf_pattern()
now accepts thearrow
parameter. Thearrow
parameter was added togeom_sf()
in ggplot2 3.5.0.geom_violin_pattern()
now accepts thebounds
parameter. Thebounds
parameter was added togeom_violin()
in ggplot2 3.5.0.DEPRECATED FEATURES:
outline.type = "legacy"
has been formally deprecated ingeom_area_pattern()
andgeom_ribbon_pattern()
.outline.type = "legacy"
was deprecated with ggpattern 0.1.0 (2020-04-01). Useoutline.type = "full"
instead.closes #94