我不明白,让我们考虑下面的数据表:
clearfix
用ggplot绘制它似乎是围绕真值随机化数据:
mt=data.table( "index" = 1:10, "matches" = rep(0,10) )
> mt
index matches
1: 1 0
2: 2 0
3: 3 0
4: 4 0
5: 5 0
6: 6 0
7: 7 0
8: 8 0
9: 9 0
10: 10 0
每次重绘时ggplot都会改变,而plot会给出正确的图形:
ggplot(data = mt, aes(x=index, y=matches)) + geom_jitter() + scale_x_discrete()
这是什么......