R Barplot:重新订购X轴标签

时间:2015-10-07 03:25:36

标签: r formatting bar-chart

我创建了一个Barplot,显示每小时的事件数。但是,看起来R将X轴标签排序为字符而不是数字。我希望我的X轴订购为0,1,2,3,4,5,......,23。无论如何,我可以明确指定订单吗?

更新:更一般地说,如果我想要特定订单,我需要做什么?我没有在文档中找到barplot()函数的任何选项,它允许明确指定条形图标签的顺序。

# 5. Bar Plot for the Time (Hour) of Incidents
barplot(xtabs(~sample$Time), 
        main="Number of Incidents per Time Slot", 
        ylab="Frequency",
        col=rainbow(nlevels(as.factor(sample$Time))),
        las=2,
        # cex.lab=0.50 This is for the x-axis Label,
        cex.names = 0.80
)

enter image description here

0 个答案:

没有答案