散点图无法正确显示

时间:2013-05-24 15:09:09

标签: r scatter-plot

下面是我用来显示散点图的代码:

xx = c('test1' , 'test2' , 'test3') 
yy = c(6 , 7 , 8) 
df <- data.frame(xx , yy)
ggplot(df, aes(x=xx, y=yy)) + geom_point(alpha = .01) + theme_bw()

为什么没有显示散点图的值?

这是输出:

enter image description here

1 个答案:

答案 0 :(得分:1)

alpha参数改变透明度。增加alpha以查看积分。