I have a dataset that contains the following values
order_dates Sales in Dollars
1 50 10
2 50 15
3 50 20
4 50 30
5 50 35
5 50 45
When using ggplot2 and geom_point, I want the x-axis to contain just 1 value -- 50. Right now, ggplot2 includes values before 50 as well. Any ideas I can implement to get the desired result?