
Last chance! 50% off unlimited learning
Sale ends in
poisson.points(ostatistic, dimension = 2, link = "loge",
idensity = NULL, imethod = 1)
Links
for more choices.NULL
value means a value is obtained internally.
Use this argument if convergence failure occurs.1
or 2
which
specifies the initialization method for $\lambda$.
If failure to converge occurs try another value
and/or else specify a value for idensity
."vglmff"
(see vglmff-class
).
The object is used by modelling functions such as vglm
,
rrvglm
and vgam
.Formulae such as the means have not been fully checked.
ostatistic
.
Similarly, suppose the number of points in any volume $V$ is a
Poisson random variable with mean
$\lambda V$ where, once again, $\lambda$
is the density of the points.
This ostatistic
and using
dimension = 3
.
The mean of $D_u$ is returned as the fitted values. Newton-Raphson is the same as Fisher-scoring.
poissonff
,
maxwell
,
rayleigh
.pdata <- data.frame(y = rgamma(10, shape = exp(-1))) # Not proper data!
ostat <- 2
fit <- vglm(y ~ 1, poisson.points(ostat, 2), data = pdata,
trace = TRUE, crit = "coef")
fit <- vglm(y ~ 1, poisson.points(ostat, 3), data = pdata,
trace = TRUE, crit = "coef") # Slow convergence?
fit <- vglm(y ~ 1, poisson.points(ostat, 3, idensi = 1), data = pdata,
trace = TRUE, crit = "coef")
head(fitted(fit))
with(pdata, mean(y))
coef(fit, matrix = TRUE)
Coef(fit)
Run the code above in your browser using DataLab