I am plotting a simple R graph with days of week in X axis and total sales in Y. I cannot figure out how to have x axis show days in ascending order. Any help is appreciated as I'm a newbie.
I tried below:
ggplot(df2, aes(x = df2$ends, y = df2$total.sale.price)) +
geom_point() +
stat_smooth(method = 'lm')