predict
function. The function will help us to plot the linear regression of ANCOVA and also predict other useful information that aids our interpretation (We’ll see later.) The previous exercise can be found here.
Answers to these exercises are available here. If you obtained a different (correct) answer than those listed on the solutions page, please feel free to post your answer as a comment on that page. Please load data-set (download here) required before starting this exercise.
Exercise 1
Create a linear ANCOVA model using the function lm
(You learned on the previous exercise.)
Exercise 2
Use the predict
function to predict a response variable (y) at every explanatory variable (x) based on the model created. (exercise 1)
Exercise 3
Create a vector to pull the replicates that are repeated: Density and Season.
Exercise 4
Predict the value using the predict
function and create it as a data frame.
Statistics with R – Intermediate Level. In this course, you will learn how to:
- Run parametric correlation and t-tests
- Learn about two-way and three-way analysis of variances
- And much more
Exercise 5
Use the predict
function to find mean values per season.
Exercise 6
Play around with the function to find the mean values per levels density.
Exercise 7
Plot the result.
Leave a Reply