VGAM (version 0.8-3)

fill: Creates a Matrix of Appropriate Dimension

Description

A support function for the argument xij, it generates a matrix of an appropriate dimension.

Usage

fill(x, values = 0, ncolx = ncol(x))

Arguments

x
A vector or matrix which is used to determine the dimension of the answer, in particular, the number of rows. After converting x to a matrix if necessary, the answer is a matrix of values values, of dimension n
values
Numeric. The answer contains these values, which are recycled columnwise if necessary, i.e., as matrix(values, ..., byrow=TRUE).
ncolx
The number of columns of the returned matrix. The default is the number of columns of x.

Value

  • matrix(values, nrow=nrow(x), ncol=ncolx), i.e., a matrix consisting of values values, with the number of rows matching x, and the default number of columns is the number of columns of x.

Details

The xij argument for vglm allows the user to input variables specific to each linear/additive predictor. For example, consider the bivariate logit model where the first/second linear/additive predictor is the logistic regression of the first/second binary response respectively. The third linear/additive predictor is log(OR) = eta3, where OR is the odds ratio. If one has ocular pressure as a covariate in this model then xij is required to handle the ocular pressure for each eye, since these will be different in general. [This contrasts with a variable such as age, the age of the person, which has a common value for both eyes.] In order to input these data into vglm one often finds that functions fill, fill1, etc. are useful.

All terms in the xij and formula arguments in vglm must appear in the form2 argument too.

References

More information can be found at http://www.stat.auckland.ac.nz/~yee.

See Also

vglm.control, vglm, multinomial.

Examples

Run this code
fill(runif(5))
fill(runif(5), ncol=3)
fill(runif(5), val=1, ncol=3)

# Generate eyes data for the examples below. Eyes are independent (OR=1).
nn = 1000  # Number of people
eyesdat = data.frame(lop = round(runif(nn), 2),
                     rop = round(runif(nn), 2),
                     age = round(rnorm(nn, 40, 10)))
eyesdat = transform(eyesdat,
    mop = (lop + rop) / 2,       # Mean ocular pressure
    op  = (lop + rop) / 2,       # Value unimportant unless plotting
#   op  =  lop,                  # Choose this if plotting
    eta1 = 0 - 2*lop + 0.04*age, # Linear predictor for left eye
    eta2 = 0 - 2*rop + 0.04*age) # Linear predictor for right eye
eyesdat = transform(eyesdat,
    leye = rbinom(nn, size=1, prob=logit(eta1, inverse=TRUE)),
    reye = rbinom(nn, size=1, prob=logit(eta2, inverse=TRUE)))

# Example 1
# All effects are linear
fit1 = vglm(cbind(leye,reye) ~ op + age,
            family = binom2.or(exchangeable=TRUE, zero=3),
            data=eyesdat, trace=TRUE,
            xij = list(op ~ lop + rop + fill(lop)),
            form2 =  ~ op + lop + rop + fill(lop) + age)
head(model.matrix(fit1, type="lm"))   # LM model matrix
head(model.matrix(fit1, type="vlm"))  # Big VLM model matrix
coef(fit1)
coef(fit1, matrix=TRUE)  # Unchanged with 'xij'
constraints(fit1)
max(abs(predict(fit1)-predict(fit1, new=eyesdat))) # Predicts correctly
summary(fit1)
plotvgam(fit1, se=TRUE) # Wrong, e.g., because it plots against op, not lop.
# So set op=lop in the above for a correct plot.



# Example 2
# Model OR as a linear function of mop
fit2 = vglm(cbind(leye,reye) ~ op + age,
            binom2.or(exchangeable=TRUE, zero=NULL),
            data=eyesdat, trace=TRUE,
            xij = list(op ~ lop + rop + mop),
            form2 =  ~ op + lop + rop + mop + age)
head(model.matrix(fit2, type="lm"))   # LM model matrix
head(model.matrix(fit2, type="vlm"))  # Big VLM model matrix
coef(fit2)
coef(fit2, matrix=TRUE)  # Unchanged with 'xij'
max(abs(predict(fit2)-predict(fit2, new=eyesdat))) # Predicts correctly
summary(fit2)
plotvgam(fit2, se=TRUE) # Wrong because it plots against op, not lop.


# Example 3. This model uses regression splines on ocular pressure.
# It uses a trick to ensure common basis functions.
BS = function(x, ...) bs(c(x,...), df=3)[1:length(x),,drop=FALSE] # trick

fit3 = vglm(cbind(leye,reye) ~ BS(lop,rop) + age,
            family = binom2.or(exchangeable=TRUE, zero=3),
            data=eyesdat, trace=TRUE,
            xij = list(BS(lop,rop) ~ BS(lop,rop) +
                                     BS(rop,lop) +
                                     fill(BS(lop,rop))),
            form2 = ~  BS(lop,rop) + BS(rop,lop) + fill(BS(lop,rop)) +
                       lop + rop + age)
head(model.matrix(fit3, type="lm"))   # LM model matrix
head(model.matrix(fit3, type="vlm"))  # Big VLM model matrix
coef(fit3)
coef(fit3, matrix=TRUE)
summary(fit3)
fit3@smart.prediction
max(abs(predict(fit3)-predict(fit3, new=eyesdat))) # Predicts correctly
predict(fit3, new=head(eyesdat))  # Note the 'scalar' OR, i.e., zero=3
max(abs(head(predict(fit3))-predict(fit3, new=head(eyesdat)))) # Should be 0
plotvgam(fit3, se=TRUE, xlab="lop") # Correct

Run the code above in your browser using DataLab