library(ggplot2)
ggplot(airquality,aes(Wind,Temp))
为什么总是提示
Error in ggplot(airquality, aes(Wind, Temp)) :
could not find function "ggplot"
这种情况一般有两种,1.没有安装ggplot2包, 2.第二没有library(ggplot2),如果已经有后面2的情况下,基本可以确定没有安装ggplot2.