Estoy interesado en un estimador de la desviación estándar en una regresión de Poisson. Por lo que la varianza es
$$Var(y)=\phi\cdot V(\mu)$$
where $\phi=1$ and $V(\mu)=\mu$. So the variance should be $Var(y)=V(\mu)=\mu$. (I'm just interested in how the variance should be, so if overdispersion occurs ($\widehat{\phi}\neq 1$), I don't care about it). Thus an estimator of the variance should be
$$\widehat{Var}(y)=V(\widehat{\mu})=\widehat{\mu}$$
and an estimator of the standard deviation should be
$$\sqrt{\widehat{Var}(y)}=\sqrt{V(\widehat{\mu})}=\sqrt{\widehat{\mu}}.$$
Es esto correcto? No he encontrado una discusión acerca de la desviación estándar en el contexto de regresión de Poisson sin embargo, es por eso que estoy pidiendo.
Ejemplo:
Así que aquí está un ejemplo sencillo (que no tiene sentido, por cierto) de lo que estoy hablando.
data1 <- function(x) {x^(2)}
numberofdrugs <- data1(1:84)
data2 <- function(x) {x}
healthvalue <- data2(1:84)
plot(healthvalue, numberofdrugs)
test <- glm(numberofdrugs ~ healthvalue, family=poisson)
summary(test) #beta0=5.5 beta1=0.042
mu <- function(x) {exp(5.5+0.042*x)}
plot(healthvalue, numberofdrugs)
curve(mu, add=TRUE, col="purple", lwd=2)
# the purple curve is the estimator for mu and it's also
# the estimator of the variance,but if I'd like to plot
# the (not constant) standard deviation I just take the
# square root of the variance. So it is var(y)=mu=exp(Xb)
# and thus the standard deviation is sqrt(exp(Xb))
sd <- function(x) {sqrt(exp(5.5+0.042*x))}
curve(sd, col="green", lwd=2)
Es el verde de la curva de la correcta estimador de la desviación estándar en una regresión de Poisson? Debe ser, ¿no?