info.poisson.design: Expected Information Matrix for a Poisson Design

Description Usage Arguments Value References See Also Examples

View source: R/info.poisson.design.R

Description

Calculates the expected information matrix for a Poisson design where the parameter lambda, the mean of the distribution, depends on a covariate, x, via the exponentiation of a linear or quadratic function of x, lambda = exp(a + b*x) or lambda = exp(a + b*x + c*x^2).

Usage

1
2
    info.poisson.design(model="linear", theta, xpoints,
                           natx=1, group.size=1)

Arguments

theta

Matrix of parameters for the linear combination of the covariate x. Each row represents a group so theta[i,] = c(a,b) if model = "linear" or theta[i,] = c(a,b,c) if model = "quadratic".

xpoints

Matrix of covariate values for each group. If there is only 1 group or all groups have the same covariate value, xpoints should be a vector; otherwise, the number of rows in xpoints must each the number of rows in theta.

model

One of {"linear", "quadratic"}. Specifies the function of the covariate x that will be used. Linear indicates, u = a + b*x, and quadratic indicates, u = a + b*x + c*x^2. Only enough to ensure a unique match need be supplied.

natx

Needed only if there are unequal sample sizes used at any of the values in xpoints. At covariate value xpoint[i,j] there are natx[i,j] observations. If specified, the dimensions of natx should be the same as the dimensions of xpoints.

group.size

Needed only if there are to be several groups with unequal sample sizes. The value of the i'th component is the relative sample size of the i'th group. The calculation made is for a single observation spread over the several groups in proportion to the specified relative sizes. If this value is specified, it should be a vector whose length is the same as the number of columns in theta.

Value

The information matrix for one observation for this design.

If model = "linear" and there are k groups, the information matrix is a square (2*k)x(2*k) matrix which is indexed by the parameters (a,b) for group 1, then (a,b) for group 2, etc.

If model = "quadratic", the information matrix is a square (3*k)x(3*k) matrix which is indexed by the parameter (a,b,c) for group 1, then (a,b,c) for group 2, etc.

References

Cox, D.R. and Hinkley, D.V. (1974). Theoretical Statistics Chapman and Hall, London.

See Also

info.binomial.design, info.ordinal.design, info.expsurv.design

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# Find the information matrix for a 2 group
# logistic Poisson design with a quadratic
# combination of covariate x and different
# sample sizes at each point
abc <- rbind(c(1.2,.9,.3), c(0.33,.21,.05))
covar <- c(1, 2, 3, 4, 5)
sample.size <- rbind(c(10,11,12,10,9), c(8,7,10,8,9))
info.poiss <- info.poisson.design(model="quadratic",
                                theta = abc, xpoints = covar,
                                natx=sample.size)
print(info.poiss)

asypow documentation built on May 2, 2019, 2:37 a.m.