Closed miaicosta closed 5 years ago
So this isn't a bug but we should definitely make it clearer how to do this. It requires mapping the grouping variable to shape via aes()
:
plot(mm_by, group = "contest_no", vline = 0.5) +
scale_shape_manual(values=c(1, 2, 3, 4, 5)) +
scale_colour_manual(values=c("red", "blue", "green", "purple", "black")) +
aes(shape = contest_no)
Ah, of course - that makes sense. Thank you!
Please specify whether your issue is about:
Hi Thomas: As mentioned, I'm having trouble manually changing the shapes of points when plotting marginal means or AMCEs. Note that using
scale_colour_manual()
works butscale_shape_manual()
is ignored.