下面是我用来显示散点图的代码:
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()
为什么散点图的值没有显示?
这是输出:
下面是我用来显示散点图的代码:
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()
为什么散点图的值没有显示?
这是输出: