订购x轴(月数)

时间:2013-03-11 02:51:34

标签: r axis

我有一个数据框如下

year month increment  
113 6 464  
113 7 132  
113 8 165  
113 9 43 
113 10 658  
113 11  54  
113 12 463  
114 1  231  
114 2 21  

尽管按照指示进行了排序,但是当我绘制增量〜因子(月)时,绘图中的结果x轴从第1个月开始,而不是像数据帧那样从第6个月开始

qplot(month,data=monthly,fill=treatment,weight=increment,position="dodge")  

如何使x轴符合我需要的月份顺序?

1 个答案:

答案 0 :(得分:0)

这样的事情,也许是:

qplot(interaction(year, month, lex.order=TRUE), data=monthly, fill=treatment,weight=increment,position="dodge")  

删除fill=treatment参数(因为我没有数据)导致:

qplot(interaction(year, month, lex.order=TRUE), data=monthly, weight=increment,position="dodge")

enter image description here