1
vote
2answers
157 views

Standardized residuals in R's lm output

I have a quick question: if I plot the diagnostic plots to an R regression, a couple of them have "Standardized Residuals" as their y-axis such as in this plot: My question is this: what are the ...
2
votes
1answer
42 views

Explanation of a step in derivation of residuals for R lm diagnostic?

I'm reading Faraway's book (http://cran.r-project.org/doc/contrib/Faraway-PRA.pdf) to try to understand R's lm diagnostic plots. On page 72 of the book is this: I have been trying to understand a ...
3
votes
1answer
354 views

How to validate & diagnose a gamma GLM in R?

I am fitting a generalized linear model in R with the log link and I need to validate and diagnose my model. I have never worked with the GLM in the past. Is there an article or any references I ...
4
votes
1answer
855 views

Diagnostic plots for lmer

I am trying to produce a glmm using the lme4 package in R. To validate my model I would like to produce some diagnostic plots ...
0
votes
2answers
2k views

How to interpret model diagnostics graphics after R linear regression? [closed]

I am interested in understanding the graph plots we get after running lm() command (for linear regression) in R like, for example ...
1
vote
1answer
2k views

How to interpret model diagnostics when doing linear regression in R?

I ran lm() on my data with models selected by individual lm's of each characteristic and then combined the top $R^2$ based on ...
3
votes
1answer
814 views

Explanation of R diagnostic plot for logistic regression

I'm hoping someone can explain this bit of R code for me related to glm(). I don't understand the diagnostic plot that has been suggested. It seems a more ...
11
votes
2answers
6k views

How to read Cook's distance plots?

Does anyone know how to work out whether points 7, 16 and 29 are influential points or not? I read somewhere that because Cook's distance is lower than 1, they are not. Am, I right?
1
vote
1answer
387 views

How to test the randomness of residual plot?

Let's say in linear regression, I got a fit and I can plot residuals to see whether there is any systematic trend in such a plot. How to quantitatively determine whether the residues are really ...
11
votes
2answers
399 views

What diagnostic plots exists for quantile regression?

Following on my question for OLS, I wonder: what diagnostic plots exists for quantile regression? (and are there R implementation of them?) A quick google search already came up with the worm plot ...
6
votes
2answers
405 views

Possible extensions to the default diagnostic plots for lm (in R and in general)?

I started digging a bit into the plot.lm function, this function gives six plots for lm, they are: a plot of residuals against fitted values a Scale-Location plot of sqrt(| residuals |) against ...
2
votes
1answer
231 views

Functions for regression diagnostics on mer objects in R

I'm particularly interested in plotting residuals against fitted values, and residuals against predictors. Often times I need to make boxplots of the residuals conditional on predictors. I'd be ...
1
vote
0answers
84 views

How do I go about conducting model diagnostics on WLS?

I'm familiar with the diagnostics required for OLS, however I'm in new territory with a model I'm fitting to data in R, using Poisson regression with GLM. What are the standard methods in evaluating ...
8
votes
2answers
7k views

Likelihood ratio test in R

I'm not sure if I'm asking something stupid or off topic here, but I can't think where can I ask this question. suppose I am going to do a univariate logistic regression on several independent ...