Hi,
I am trying to use ggplot2 library in my R Program but it is giving following error:
error in library(ggplot2) : there is no package called â??ggplot2â??
How to resolve it?
Thanks
Hi,
error in library(ggplot2) : there is no package called "ggplot2"
comes when ggplot2 library is not installed. This library is not distributed as part of default installation.
Use the following command to install it:
install.packages("ggplot2")
Thanks
Ads