标签: 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()
为什么没有显示散点图的值?
这是输出:
答案 0 :(得分:1)
alpha参数改变透明度。增加alpha以查看积分。