I am plotting a simple geom_point
with year as the x axis and a percentage rate as the y axis. For some reason the y axis is not placing the rate from smallest to largest and instead has the two smallest rates at the top with the rest being in order smallest to largest bottom to top, respectively.
Here is my code:
df1= ggplot(ball, aes(year,krate))
df1 + geom_point()