在R上运行ggplot函数时,我的x轴刻度线会像这样发出,我不知道如何解决。我的目标是使其间隔为0; 10。 这是当前正在运行的代码
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")