Not logged in
Talk
Contributions
Create account
Log in
Navigation
Main page
About
People
Publications
Teaching
Resources
Research Blog
Wiki Functions
Recent changes
Help
Licensing
Page
Discussion
Edit
View history
Editing
Statistics and Statistical Programming (Winter 2017)/R lecture outline: Week 7
From CommunityData
Jump to:
navigation
,
search
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.
Anti-spam check. Do
not
fill this in!
* 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() ** module formulae, which we've already seen! ** looking at model objects: summary(); m$<tab> or names(m) *** m$fitted.values; m$residuals *** also functions: coefficients(m) (or coef), predict(m), residuals(m) (or resid); confint(m) *** we can also do these by hand: **** residuals: mtcars$mpg - m$fitted.values **** confint: est + 1.96 * c(-1, 1) * se * plotting residuals: ** hist(residuals(m)) ** plot against our x: plot(mtcars$hp, residuals(m) ** QQ-plots with qqnorm(residuals(m)) ** doing a plot with ggplot just involves making a dataset: d.fig <- data.frame(hp=mtcars$hp, resids=residuals(m)) * adding controls: just make our formula more complex ** update.formula() ** or just a write a new one ** adding logical variables: no problem! ** adding categorical variables: no problem! (I'll explain interpretation later, but i want you to see that this works!) * generating nice regression plots: ** 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!
Summary:
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)
Tools
What links here
Related changes
Special pages
Page information