Editing Statistics and Statistical Programming (Winter 2017)/R lecture outline: Week 7

From CommunityData
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
* correlations
** cor(): works with two variables, or with more!
** cor(method="spearman") is useful if you have non-normally distributed data because it is simply rank correlations)
* fitting a linear model with one variable: lm()
* fitting a linear model with one variable: lm()
** module formulae, which we've already seen!  
** module formulae, which we've already seen!  
** looking at model objects: summary(); m$<tab> or names(m)
** looking at model objects: summary(); m$<tab> or names(m)
*** m$fitted.values; m$residuals
*** m$fitted.values;
*** also functions: coefficients(m) (or coef), predict(m), residuals(m) (or resid); confint(m)
*** residuals: mtcars$mpg - m$fitted.values OR m$residuals
*** we can also do these by hand:
*** also functions: coefficients(m) (or coef), predict(m), residuals(m) (or resid)
**** residuals: mtcars$mpg - m$fitted.values
**** confint: est + 1.96 * c(-1, 1) * se
* plotting residuals:
* plotting residuals:
** hist(residuals(m))
** hist(residuals(m))
Line 22: Line 17:
* generating nice regression plots:
* generating nice regression plots:
** one of many options: stargazer(m1, m2, type="text") or type="html"
** one of many options: stargazer(m1, m2, type="text") or type="html"
* interpreting linear models with anova() — i'm not going to walk through the details but the important thing to keep in mind is that although the statistics are different, the p-values are identical!
Please note that all contributions to CommunityData are considered to be released under the Attribution-Share Alike 3.0 Unported (see CommunityData:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following CAPTCHA:

Cancel Editing help (opens in new window)