I am plotting a chart using ggplot2 in R. I have the same scatter-plot made using Excel and I really like the aesthetics of the dots plotted in Excel see image below).
My ggplot2 codes currently stand as follows:
ggplot(mydata2, aes(TotalStay, TotalExpenses)) +
geom_point(shape = 19, position = position_jitter(width = 1, height = .5))
What do I need to add to my existing codes to get the same effect as the scatter-plot in Excel?