library(ggplot2) # Simple scatter plot sp <- ggplot(df, aes(wt, mpg, label = rownames(df)))+ geom_point() # Add texts sp + geom_text() # Change the size of ...
確定! 回上一頁