Description Usage Arguments Examples
View source: R/geom-point-blur.R
Draw blurry points in ggplot
1 2 3 4 5 6 7 8 9 10 11 12 |
mapping, data, stat, position, ..., na.rm, show.legend, inherit.aes |
See
documentation for |
blur_size |
How far should the blur extend from the edge of the drawn point. Default: 3 |
blur_steps |
Number of repetitions to create blur. A higher value for
|
1 2 3 4 5 6 7 8 | ## Not run:
ggplot(mtcars) +
geom_point_blur(aes(mpg, wt, blur_size = disp), blur_steps = 2) +
scale_blur_size_continuous(range = c(1, 15)) +
theme_bw() +
labs(title = "Larger blur indicates larger engine displacement")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.