I'm trying to make a line plot of 3-point makes for Steph so far this season but the spacing of the y axis ticks are way too close together. Line graph. I'm sure there's a relatively easy fix for this. I'm also wondering how to label only Game 1 and Game 29 on the x-axis, rather than every single game. I hope this is enough information for an answer, if not let me know! Cheers.
ggplot(data=Top_10, aes(y=Stephen_Curry, x=Game_Number, group=1)) +
geom_line(color="blue") +
geom_point(color="black") +
scale_x_discrete(limits = c("1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29")) +
scale_y_continuous(breaks=seq(0,15,1)) +
theme(axis.text.y = element_text(margin = margin(r=5)))