When I do:
fig = px.line(df, x="day", y="avg_spending")
fig.show()
It doesn't put values in y axis by 2 (0, 2, 4,...). I want it to be 1 by 1 (0,1,2,3,..). My maximum value of "avg_spending" in df is 17, so I would like there to be 1,2,3,...,17 on y axis. How to do that?