Using the `mtcars` dataset in RStudio, calculate the correlation between `mpg` and `hp`, and then perform a linear regression with `mpg` as the dependent variable and `hp` as the independent variable. What is the correlation and the slope of the regression line? Hint: Use the following code. cor(mtcars$mpg, mtcars$hp) lm(mtcars$mpg ~ mtcars$hp)$coefficients[2] lm(mpg ~ hp, data=mtcars)$coefficient[2] # another method单项选择题
登录即可查看完整答案
我们收录了全球超50000道真实原题与详细解析,现在登录,立即获得答案。
更多留学生实用工具
希望你的学习变得更简单
加入我们,立即解锁 海量真题 与 独家解析,让复习快人一步!