ggplot的scale_x_discrete中断问题

时间:2018-06-27 18:08:24

标签: r ggplot2

我对R很陌生,在使用ggplot2时遇到了问题。

当我第一次尝试在数据集中绘制一些点时,出现了带有过多标签的x和y轴,如下所示:

too many labels

但是当我尝试使用scale_x_discrete时,它不会显示我指定的所有标签。

这是我使用的代码:

ggplot(schooldata, aes(Economic.Need.Index, Average.Math.Proficiency)) 
+ geom_point() 
+ scale_x_discrete(name = "Economic Need Index", breaks = c("0", "0.2", "0.4", "0.6", "0.8", "1"), labels = c("0", "0.2", "0.4", "0.6", "0.8", "1")) 
+ scale_y_discrete(name = "Average Math Proficiency", breaks = c("1", "2", "3", "4"), labels = c("1", "2", "3", "4"))

这是我的情节:

It only plotted a couple of the breaks/labels

我知道可能有一个非常简单的解决方法,我只是经验不足,我不知道还能尝试什么。任何帮助将不胜感激,谢谢!

0 个答案:

没有答案