| scale_shape_tremmel {ggthemes} | R Documentation |
Shape scales from Tremmel (1995)
scale_shape_tremmel(overlap = FALSE, n3alt = TRUE, ...)
overlap |
use an empty circle instead of a solid circle when
|
n3alt |
If |
... |
common discrete scale parameters: |
tremmel_shape_pal for a description of the palette.
Other shapes: circlefill_shape_pal,
cleveland_shape_pal,
scale_shape_circlefill,
scale_shape_cleveland,
tremmel_shape_pal
library("ggplot2")
(ggplot(mtcars, aes(x = mpg, y = hp, shape = factor(cyl)))
+ geom_point() + scale_shape_tremmel())
(ggplot(mtcars, aes(x = mpg, y = hp, shape = factor(cyl)))
+ geom_point() + scale_shape_tremmel(n3alt = FALSE))
(ggplot(mtcars, aes(x = mpg, y = hp, shape = factor(am)))
+ geom_point() + scale_shape_tremmel())
(ggplot(mtcars, aes(x = mpg, y = hp, shape = factor(am)))
+ geom_point() + scale_shape_tremmel(overlap = TRUE))