以下は、散布図を表示するために使用しているコードです。
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()
散布図の値が表示されないのはなぜですか?
出力は次のとおりです。