May 2019
Beginner to intermediate
266 pages
5h 57m
English
In this section, we will focus on exploring the dataset graphically using a DOE scatter plot, a DOE mean plot, a DOE standard deviation plot, and a contour plot. Let's focus on each of them in turn:
> plot(Autompg$weight , Autompg$mpg, xlab = 'Weight of Cars', ylab = 'Miles per Gallon', main = 'Scatter Plot for MTCars Weight Vs MPG')
This gives us the following output plot:

The alternative way to depict the scatter plot is with the help of the ggplot2 package or library, which ...
Read now
Unlock full access