Displaying 20 results from an estimated 1000 matches similar to: "GEE with R: "double" overdispersion?"
2004 Aug 23
0
GEE - test for overdispersion and scale adjustment
Hi there,
I am using the geepack package and wish to test if my data (family=poisson)
is overdispersed so that I may adjust the "scale.value" if necessary. Is
there a specific function or method I should be using?
Thanks for the advice,
Bruce
_____________________________
Bruce Catton
MSc Candidate
Forest Sciences
University of British Columbia
Vancouver, British
2011 Apr 01
1
qcc.overdispersion-test
Hi all,
I have made an overdispersion test for a data set and get the following result
Overdispersion test Obs.Var/Theor.Var Statistic p-value
poisson data 16.24267 47444.85 0
after deleting the outliers from the data set I get the following result
Overdispersion test Obs.Var/Theor.Var Statistic p-value
poisson data 16.27106 0 1
The
2008 Feb 11
1
overdispersion + GAM
Hi,
there are a lot of messages dealing with overdispersion, but I couldn't find
anything about how to test for overdispersion. I applied a GAM with binomial
distribution on my presence/absence data, and would like to check for
overdispersion. Does anyone know the command?
Many thanks,
Anna
--
View this message in context:
2008 Apr 21
1
estimate of overdispersion with glm.nb
Dear R users,
I am trying to fully understand the difference between estimating
overdispersion with glm.nb() from MASS compared to glm(..., family =
quasipoisson).
It seems that (i) the coefficient estimates are different and also (ii) the
summary() method for glm.nb suggests that overdispersion is taken to be one:
"Dispersion parameter for Negative Binomial(0.9695) family taken to be
2007 Feb 25
0
Overdispersion in a GLM binomial model
Hello,
The share of concurring votes (i.e. yes-yes and no-no) in total votes
between a pair of voters is a function of their ideological distance (index
continuous on [1,2]).
I show by other means that the votes typically are highly positively
correlated (with an average c=0.6). This is because voters sit together and
discuss the issue before taking a vote, but also because they share common
2009 Nov 24
1
overdispersion and quasibinomial model
I am looking for the correct commands to do the following things:
1. I have a binomial logistic regression model and i want to test for
overdispersion.
2. If I do indeed have overdispersion i need to then run a quasi-binomial
model, but I'm not sure of the command.
3. I can get the residuals of the model, but i need to then apply a shapiro
wilk test to test them. Does anyone know the command
2013 Oct 11
0
Mixed models with overdispersion
Hello everybody,
I have count data and with these data, I would like to build a mixed
model by using the function glmer(). In a first time, I calculated the c-hat of
a simple model with glm() to verify overdispersion and I found a c-hat = 18. I
also verified overdispersion in the mixed model by checking the residuals of
random effects via the function glmmPQL and I found a c-hat = 15. Thus,
2012 Oct 18
2
Assessing overdispersion and using quasi model with lmer, possible?
Hello!
I am trying to model data on species abundance (count data) with a poisson
error distribution. I have a fixed and a random variables and thus needs a
mixed model. I strongly doubt that my model is overdispersed but I don't
know how to get the overdispersion parameter in a mixed model. Maybe someone
can help me on this point. Secondly, it seems that quasi models cannot be
implemented
2005 Nov 23
2
negative binomial overdispersion question
Hello,
I'm a grad student in the Intelligent Transportation Systems lab at Portland
State Univ. in Portland, OR, USA. I'm trying to learn the basics of R to run a
negative binomial in the near future, and so I ran a test regression on roadway
crash data obtained from "Statistical and Econometric Methods for
Transportation Data Analysis" by Washington et al (p. 250). I ran the
2006 Oct 12
0
Is there a function in R to evaluate the adjusted AIC or other statistc where overdispersion existed in GLMs?
Dear friends,
As we all know, the usual model selection criteria(e.g.deviance,AIC...) in
GLMs isn't very good for selecting the best model when overdispersion exist,
so we need to adjust the corresponding statistic,see(Fitzmaurice,G.M.
(1997) Model selection with overdispersed
2007 Mar 22
0
accounting for overdispersion in poisson distribution with lmer procedure
Hello,
I am analysing counts data with a mixed model using lmer procedure. I
therefore use the quasipoisson distribution but I'm not sure if this is
sufficient to account for overdispersion. Actually the results are not very
different to what I get when specifying a poisson distribution although my
data are clearly overdispersed.
this my model:
>model <- lmer(NB ~ T + volume +
2015 Jun 25
1
Estimating overdispersion when using glm for count and binomial data
Dear All
I recently proposed a simple modification to Wedderburn's 1974 estimate
of overdispersion for count and binomial data, which is used in glm for
the quasipoisson and quasibinomial families (see the reference below).
Although my motivation for the modification arose from considering
sparse data, it will be almost identical to Wedderburn's estimate when
the data are not sparse.
2009 Apr 11
0
Sean / Re: question related to fitting overdispersion count data using lmer quasipoisson
Hey Buddy,
Hope you have been doing well since last contact.
If you have the answer to the following question, please let me know.
If you have chance to travel up north. let me know.
best,
-Sean
---------- Forwarded message ----------
From: Sean Zhang <seanecon@gmail.com>
Date: Sat, Apr 11, 2009 at 12:12 PM
Subject: question related to fitting overdispersion count data using lmer
2015 Jun 26
0
Estimating overdispersion when using glm for count and binomial data
Ben Bolker writes:
> This looks really useful. Base R is very conservative; despite the
> fact that it would be much more easily adopted in base R, I think it
> is much more likely to find a home in an add-on package such as aods3
> or glm2 than in base R ...
Thanks for these suggestions Ben - Simon Wood has also been in touch,
and plans to put it into mgcv
David Fletcher
Original
2009 Jan 07
1
how to estimate overdispersion in glmer models?
Dear all,
I am using function glmer from package lme4 to fit a generalized linear
mixed effect model. My model is as follows:
model1 <- glmer(fruitset ~ Dist*wire + (1|Site), data, binomial)
summary(model1)
Generalized linear mixed model fit by the Laplace approximation
Formula: fruitset ~ Dist * wire + (1 | Site)
Data: data
AIC BIC logLik deviance
68.23 70.65 -29.11 58.23
Random
2010 Feb 18
0
Appropriate test for overdispersion in binomial data
Dear R users,
Overdispersion is often a problem in binomial data. I attempt to model a
binary response (sex-ratio) with three categorical explanatory variables,
using GLM, which could assume the form:
y<-cbind(sexf, sample-sexf)
model<-glm(y ~ age+month+year, binomial)
summary(model)
Output:
(Dispersion parameter for binomial family taken to be 1)
Null deviance: 8956.7 on 582
2003 Feb 18
4
glm and overdispersion
Hi,
I am performing glm with binomial family and my data show slight
overdispersion (HF<1.5). Nevertheless, in order to take into account for
this heterogeneity though weak, I use F-test rather than Chi-square
(Krackow & Tkadlec, 2001). But surprisingly, outputs of this two tests
are exactly similar. What is the reason and how can I scale the output
by overdispersion ??
Thank you,
2009 Apr 11
0
question related to fitting overdispersion count data using lmer quasipoisson
Dear R-helpers:
I have a question related to fitting overdispersed count data using lmer.
Basically, I simulate an overdispsed data set by adding an observation-level
normal random shock
into exp(....+rnorm()).
Then I fit a lmer quasipoisson model.
The estimation results are very off (see model output of fit.lmer.over.quasi
below).
Can someone kindly explain to me what went wrong?
Many thanks in
2000 Apr 19
1
scale factors/overdispersion in GLM: possible bug?
I've been poking around with GLMs (on which I am *not* an expert) on
behalf of a student, particularly binomial (standard logit link) nested
models with overdispersion.
I have one possible bug to report (but I'm not confident enough to be
*sure* it's a bug); one comment on the general inconsistency that seems to
afflict the various functions for dealing with overdispersion in GLMs
2010 Nov 19
2
Question on overdispersion
I have a few questions relating to overdispersion in a sex ratio data set
that I am working with (note that I already have an analysis with GLMMs for
fixed effects, this is just to estimate dispersion). The response variable
is binomial because nestlings can only be male or female. I have samples of
1-5 nestlings from each nest (individuals within a nest are not independent,
so the response