library(ggplot2) d <- data.frame(x=1:5, y=rnorm(5), label=c("一","二","三","四","五")) p2 <- ggplot(d, aes(x, y)) + geom_point() + # geom_text 需要在裡面 ...
確定! 回上一頁