I am simply trying to show the breaks on the x axis of a plot (5,4,3,2,1,.5) but it will not show the .5. When I tried to code below, it resulted in not showing any x marks whatsoever and I don't know why.
labels <- c(5,4,3,2,1,.5)
ggplot(kobe_vs_kawhi, aes(desc(Time_Left), FG_Percentage, color = Player)) +
geom_point() +
geom_smooth() +
scale_x_continuous(breaks = labels) +
scale_color_manual(values = c("red4", "gold2"))