Consider the following output for a linear model for estimating the salary of employees at a company (in $) by the numbe
Posted: Wed May 04, 2022 12:01 pm
Consider the following output for a linear model for estimating the salary of employees at a company (in $) by the number of years employed at the company. > technitron.1m = 1m(salary yrs.empl, data = technitron.df) > newdata = list (yrs.empl = c(6, 8)) > predict(technitron. Im, newdata, interval = "confidence") fit Iwr upr 1 35837.47 32582.25 37492.69 2 37251.91 35024.31 39479.50 > predict(technitron. Im, newdata, interval="prediction") fit lwr upr 1 35837.47 28396.88 49678.86 2 37251.91 22647.76 51856.85 Give the appropriate interval for the salary of an individual employee who has been employed for 6 years. (20396.88, 49678.06) O (22647.76, 51856.05) O (35024.31, 39479.50) O (32582.25, 37492.69)