编辑:可能更类似于你想要的东西:
breaks <- quantile(data$vis)
qplot(x=x, y=y, data = data, color = vis) +
scale_colour_gradientn(breaks = as.vector(breaks), colours =
c("grey", "blue", "red"), values = as.vector(breaks),
oob = identity, rescaler = function(x,...) x, labels = names(breaks))
旧答案:在这种情况下,休息不是你真正想要的
qplot(x=x, y=y, data=data, color=vis) + scale_colour_gradient(breaks = 1:10 * 10)
考虑到我们拥有的数据量
quantile(data$vis, seq(0, 1, 0.1))
0% 10% 20% 30% 40%
9.294095e-07 1.883887e-02 8.059213e-02 1.646752e-01 3.580304e-01
50% 60% 70% 80% 90%
6.055612e-01 9.463869e-01 1.638687e+00 2.686160e+00 5.308239e+00
100%
1.693077e+02
所以可能像
qplot(x=x, y=y, data=data, color=vis) + scale_colour_gradient(limits = c(0,5))
会很好,这里点 > 5 是灰色的。一个更复杂的解决方案,您可能首先想要的是this。