library(ggplot2) attach(iris) p <- ggplot(data=iris,aes(x = Sepal.Length,y = Sepal.Width)) p + geom_point(aes(colour = Species)) + ...
確定! 回上一頁