【发布时间】:2014-09-15 06:53:27
【问题描述】:
这段代码:
x = c(0,0,1,3)
y = c(0,1,1,0)
df = data.frame(x , y)
library(ggplot2)
ggplot(df, aes(x=x, y=y)) +
geom_point(shape=1)+ #hollow circles
geom_point(aes(size = 10))+
scale_size_continuous(range = c(7, 7))
生成:
为什么会生成带有 10,10(蓝色圆圈)的纯黑色球体?
如何去除?
【问题讨论】: