
While running a ggplot function on R my x-axis ticks are coming out like this and I dont know how to fix it. My goal is for it to be in 0;10 intervals.
Here is the code im currently running
ggplot(DFEco, aes(x = Dinero.Gastado..M.de.Euros. , y = Puntos.Totales, 
                  label = Equipo, color = Equipo, show.legend = F)) +
  geom_point(show.legend = F)+
  geom_text_repel(aes(label = Equipo), show.legend = F)+
  labs(y = "Puntos", x = "Dinero Gastado") 
 
    