Minor update to docs - the aesthetics arguments of ggplot::geom_line have changed
From the customization example in README.html:
Now we can customize this figure.
ggplot() +
geom_sf(aes(fill=count), data = venn_region(data)) +
geom_sf(size = 2, lty = "dashed", color = "grey", data = venn_setedge(data), show.legend = F) +
Minor update to docs - the aesthetics arguments of ggplot::geom_line have changed
From the customization example in README.html:
I believe the last line should read:
When used in ggplot2,
geom_line(size=2)
returns the following warning:When I use
geom_sf(size=2)
, I don't get a warning, but there's no affect on the plot. However,geom_sf(linewidth=2)
works as expected.Note that
geom_sf(lty='dashed')
does works as expected, butlty
isn't documented in ggplot2. It might improve clarity a bit to uselinetype
instead?