looking at some nfl data.. I am looking to condense my x axis.. my x value is binary.. so I only want to see 0 or 1 yet values in between 0 and 1 are appearing.. so I am seeing .25, .50, .75 and it is just taking up space.. how can I eliminate these unwanted values? thank you
library(ggplot2)
ggplot(gtgruns, aes(x=shotgun, y=epa)) +
geom_point(alpha = 0.4) +
theme_classic()