假设我在10到1之间有200个整数点的10次观察:
mysample = sample(rep(seq(1,10),20),10);
我想条形图
barplot(table(mysample));
在这个例子中,没有观察7.是否有一种快速的方法告诉barplot将x轴范围设置为1到10之间的所有整数,还是我必须手动编辑表?
答案 0 :(得分:11)
尝试
barplot(table(factor(mysample, levels=1:10)));
通过使用因子,R将知道哪些级别是"缺少"