library(ggplot2) # Base plot gg <- ggplot(midwest, aes(x=area, y=poptotal)) + geom_point(aes(col=state), size=3) + # Set color to vary based on state ...
確定! 回上一頁