# if not alraedy done load library ggplot2
library(ggplot2)
library(dplyr)
Attaching package: 'dplyr'
The following objects are masked from 'package:stats':
filter, lag
The following objects are masked from 'package:base':
intersect, setdiff, setequal, union
data(iris)
ggplot(data = iris, aes(Sepal.Length, Sepal.Width))+ # scatter plot
geom_point()

























