Hi. I've made a plot by using ggplot and I'd like to set the scale/ interval for my x-axis from 0 to 40000 per 1000. Here is what I have:
ggplot(aes(x=Size, y=MoE)) + geom_point() + scale_x_discrete(breaks=seq(0, 40000, 1000))
I know how to set it for continuous data but not for discrete data. Can anyone help me out please? Thank you in advance!