library(ggplot2) # 一般ggplot2 圖形 ggplot(mtcars, aes(wt, mpg, label = rownames(mtcars))) + geom_point(color = 'red') + geom_text(hjust = 0, vjust = 0)
確定! 回上一頁