Increase size of geom_point for one factor level
Say I like to increase the size of only those data points where the factor variable cyl == 6. How can I do that? ggplot(mtcars, aes(x = qsec , y = mpg, col = as.factor(cyl ))) + geom_point(size= 2) I do not want to use the size option here: ggplot(mtcars, aes(x = qsec , y… Read More Increase size of geom_point for one factor level