我创建了一个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
)