QvarUC.RdTakes a vglm fit or a variance-covariance matrix,
and preprocesses it for rcim and
uninormal so that quasi-variances can be computed.
Qvar(object, factorname = NULL, which.linpred = 1,
coef.indices = NULL, labels = NULL,
dispersion = NULL, reference.name = "(reference)", estimates = NULL)A "vglm" object or a variance-covariance
matrix, e.g., vcov(vglm.object).
The former is preferred since it contains all the information needed.
If a matrix then factorname and/or coef.indices
should be specified to identify the factor.
A single integer from the set 1:M.
Specifies which linear predictor to use.
Let the value of which.linpred be called \(j\).
Then the factor should appear in that linear predictor, hence
the \(j\)th row of the constraint matrix corresponding
to the factor should have at least one nonzero value.
Currently the \(j\)th row must have exactly one nonzero value
because programming it for more than one nonzero value is difficult.
Character.
If the vglm object contains more than one
factor as explanatory variable then this argument should
be the name of the factor of interest.
If object is a variance-covariance matrix then
this argument should also be specified.
Character. Optional, for labelling the variance-covariance matrix.
Numeric.
Optional, passed into vcov() with the same argument name.
Character. Label for for the reference level.
Optional numeric vector of length at least 3 specifying the indices of the factor from the variance-covariance matrix.
an optional vector of estimated coefficients
(redundant if object is a model).
Suppose a factor with \(L\) levels is an explanatory variable in a
regression model. By default, R treats the first level as baseline so
that its coefficient is set to zero. It estimates the other \(L-1\)
coefficients, and with its associated standard errors, this is the
conventional output. From the complete variance-covariance matrix one
can compute \(L\) quasi-variances based on all pairwise difference
of the coefficients. They are based on an approximation, and can be
treated as uncorrelated. In minimizing the relative (not absolute)
errors it is not hard to see that the estimation involves a RCIM
(rcim) with an exponential link function
(explink).
If object is a model, then at least one of factorname or
coef.indices must be non-NULL. The value of
coef.indices, if non-NULL, determines which rows and
columns of the model's variance-covariance matrix to use. If
coef.indices contains a zero, an extra row and column are
included at the indicated position, to represent the zero variances
and covariances associated with a reference level. If
coef.indices is NULL, then factorname should be
the name of a factor effect in the model, and is used in order to
extract the necessary variance-covariance estimates.
Quasi-variances were first implemented in R with qvcalc. This implementation draws heavily from that.
A \(L\) by \(L\) matrix whose \(i\)-\(j\) element is the logarithm of the variance of the \(i\)th coefficient minus the \(j\)th coefficient, for all values of \(i\) and \(j\). The diagonal elements are abitrary and are set to zero.
The matrix has an attribute that corresponds to the prior
weight matrix; it is accessed by uninormal
and replaces the usual weights argument.
of vglm. This weight matrix has ones on
the off-diagonals and some small positive number on
the diagonals.
Firth, D. (2003). Overcoming the reference category problem in the presentation of statistical models. Sociological Methodology 33, 1–18.
Firth, D. and de Menezes, R. X. (2004). Quasi-variances. Biometrika 91, 65–80.
Yee, T. W. and Hadi, A. F. (2014). Row-column interaction models, with an R implementation. Computational Statistics, 29, 1427–1445.
This is an adaptation of qvcalc() in qvcalc.
It should work for all vglm
models with one linear predictor, i.e., \(M = 1\).
For \(M > 1\) the factor should appear only in one of the
linear predictors.
It is important to set maxit to be larger than usual for
rcim since convergence is slow. Upon successful
convergence the \(i\)th row effect and the \(i\)th column effect
should be equal. A simple computation involving the fitted and
predicted values allows the quasi-variances to be extracted (see
example below).
A function to plot comparison intervals has not been written here.
Negative quasi-variances may occur (one of them and
only one), though they are rare in practice. If
so then numerical problems may occur. See
qvcalc() for more information.
# Example 1
data("ships", package = "MASS")
Shipmodel <- vglm(incidents ~ type + year + period,
poissonff, offset = log(service),
# trace = TRUE, model = TRUE,
data = ships, subset = (service > 0))
# Easiest form of input
fit1 <- rcim(Qvar(Shipmodel, "type"), uninormal("explink"), maxit = 99)
qvar(fit1) # Easy method to get the quasi-variances
#> [1] 0.024255179 0.007450492 0.083017027 0.060625895 0.030828174
qvar(fit1, se = TRUE) # Easy method to get the quasi-standard errors
#> [1] 0.15574074 0.08631623 0.28812676 0.24622326 0.17557954
(quasiVar <- exp(diag(fitted(fit1))) / 2) # Version 1
#> [1] 0.024255179 0.007450492 0.083017027 0.060625895 0.030828174
(quasiVar <- diag(predict(fit1)[, c(TRUE, FALSE)]) / 2) # Version 2
#> [1] 0.024255179 0.007450492 0.083017027 0.060625895 0.030828174
(quasiSE <- sqrt(quasiVar))
#> [1] 0.15574074 0.08631623 0.28812676 0.24622326 0.17557954
# Another form of input
fit2 <- rcim(Qvar(Shipmodel, coef.ind = c(0, 2:5), reference.name = "typeA"),
uninormal("explink"), maxit = 99)
if (FALSE) qvplot(fit2, col = "green", lwd = 3, scol = "blue", slwd = 2, las = 1) # \dontrun{}
# The variance-covariance matrix is another form of input (not recommended)
fit3 <- rcim(Qvar(cbind(0, rbind(0, vcov(Shipmodel)[2:5, 2:5])),
labels = c("typeA", "typeB", "typeC", "typeD", "typeE"),
estimates = c(typeA = 0, coef(Shipmodel)[2:5])),
uninormal("explink"), maxit = 99)
(QuasiVar <- exp(diag(fitted(fit3))) / 2) # Version 1
#> [1] 0.024255179 0.007450492 0.083017027 0.060625895 0.030828174
(QuasiVar <- diag(predict(fit3)[, c(TRUE, FALSE)]) / 2) # Version 2
#> [1] 0.024255179 0.007450492 0.083017027 0.060625895 0.030828174
(QuasiSE <- sqrt(quasiVar))
#> [1] 0.15574074 0.08631623 0.28812676 0.24622326 0.17557954
if (FALSE) qvplot(fit3) # \dontrun{}
# Example 2: a model with M > 1 linear predictors
if (FALSE) require("VGAMdata")
xs.nz.f <- subset(xs.nz, sex == "F")
#> Error: object 'xs.nz' not found
xs.nz.f <- subset(xs.nz.f, !is.na(babies) & !is.na(age) & !is.na(ethnicity))
#> Error: object 'xs.nz.f' not found
xs.nz.f <- subset(xs.nz.f, ethnicity != "Other")
#> Error: object 'xs.nz.f' not found
clist <- list("sm.bs(age, df = 4)" = rbind(1, 0),
"sm.bs(age, df = 3)" = rbind(0, 1),
"ethnicity" = diag(2),
"(Intercept)" = diag(2))
fit1 <- vglm(babies ~ sm.bs(age, df = 4) + sm.bs(age, df = 3) + ethnicity,
zipoissonff(zero = NULL), xs.nz.f,
constraints = clist, trace = TRUE)
#> Error in eval(mf, parent.frame()): object 'xs.nz.f' not found
Fit1 <- rcim(Qvar(fit1, "ethnicity", which.linpred = 1),
uninormal("explink", imethod = 1), maxit = 99, trace = TRUE)
#> Error in Qvar(fit1, "ethnicity", which.linpred = 1): factor 'ethnicity' is not used the 1st eta (linear predictor)
Fit2 <- rcim(Qvar(fit1, "ethnicity", which.linpred = 2),
uninormal("explink", imethod = 1), maxit = 99, trace = TRUE)
#> Error in Qvar(fit1, "ethnicity", which.linpred = 2): factor 'ethnicity' is not used the 2nd eta (linear predictor)
# \dontrun{}
if (FALSE) par(mfrow = c(1, 2))
qvplot(Fit1, scol = "blue", pch = 16, main = expression(eta[1]),
slwd = 1.5, las = 1, length.arrows = 0.07)
#> Error: object 'Fit1' not found
qvplot(Fit2, scol = "blue", pch = 16, main = expression(eta[2]),
slwd = 1.5, las = 1, length.arrows = 0.07)
#> Error: object 'Fit2' not found
# \dontrun{}