I have created the (very simple) boxplot below in R.
boxplot(mpg ~ vs, data = mtcars)
stripchart(mpg ~ vs, data = mtcars,
method = "jitter",
vertical = TRUE,
add = TRUE)
I would then like to do the following, but I have not been able to find an answer while searching around, so I hope someone here might be able to help. I would like to:
- Change "1" and "0" to "Yes" and "No", respectively - is that possible without changing the data set?
- Change the font to Times New Roman
- Highligt one specific jitter dot so that it visually shows the mpg value, for instance the highest value in the vs = 1 group.
Best regards

