Question
Spoiler: lm(y~x1+x2+x4+...)
Then, explore a few more promising candidates, using lm and graphs.
Solution Preview
These solutions may offer step-by-step problem-solving explanations or good writing examples that include modern styles of formatting and construction of bibliographies out of text citations and references. Students may use these solutions for personal skill-building and practice. Unethical use is strictly forbidden.
R Code is given below:mydata = read.table("C:/Users/GCE Employee/Desktop/WORK/DOWNLOADS/data.txt", header= TRUE, sep = ";")
model1 <- lm(quality ~ ., data = mydata)
model1
summary (model1)
anova(model1)
resid(model1) #List of residuals
plot(density(resid(model1))) #A density plot
qqnorm(resid(model1)) # A quantile normal plot - good for checking normality
qqline(resid(model1))
model2 <- step(lm(quality ~ ., data = mydata), direction="both")
summary (model2)
anova(model2)...
By purchasing this solution you'll be able to access the following files:
Solution.docx.