Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
This is part two of the ‘applied statistical theory’ series that will cover the bare essentials of various statistical techniques. As analysts, we need to know enough about what we’re doing to be dangerous and explain approaches to others. It’s not enough to say “I used X because the misclassification rate was low.”
Standard linear regression summarizes the average relationship between a set of predictors and the response variable.
library(quantreg) head(mtcars) frmla <- mpg ~ . u=seq(.02,.98,by=.02) mm = rq(frmla, data=mtcars, tau=u) # for a series of quantiles mm = rq(frmla, data=mtcars, tau=0.50) # for the median summ <- summary(mm, se = "boot") summ plot(summ)
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.