basic.plot <- ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width)) + geom_point()+ xlab("Sepal Length (mm)")+ ylab("Sepal Width (mm)")+ ggtitle("Sepal dimensions")