June 2016
Beginner to intermediate
1783 pages
71h 22m
English
In this recipe, we will see how we can visualize a three-dimensional scatter plot with a fitted regression plane.
Let's recall the airquality data from the datasets library. In this particular recipe, we will use Ozone as a dependent variable and Solar.R and Temp as independent variables in order to fit the regression model, and then we visualized it.
To produce this plot, we will perform the following steps:
attach() function.Ozone as a dependent variable and Solar.R and Temp as independent variables and store it as an R object. ...Read now
Unlock full access