Last chance! 50% off unlimited learning
Sale ends in
parse.par
function reshapes parameter vectors for
comfortability with the output matrix from model.matrix.multiple
.
Use parse.par
to identify sets of parameters; for example, within
optimization functions that require vector input, or within qi
functions that take matrix input of all parameters as a lump.parse.par(par, terms, shape = "matrix", eqn = NULL)
model.frame.multiple
or
model.matrix.multiple
"matrix"
or "vector"
)
that identifies the type of output structurepar
structure"eqn"
. By default, eqn = NULL
, such that all systematic
components are selected. (Systematic components have ExpVar = TRUE
in the appropriate
describe.model
function.) If an ancillary parameter (for which ExpVar = FALSE
in
describe.model
) is specified in eqn
, it is
always returned as a vector (ignoring shape
). (Ancillary
parameters are all parameters that have intercept only formulas.)
model.matrix.multiple
, parse.formula
and the full Zelig manual at
# Let's say that the name of the model is "bivariate.probit", and
# the corresponding describe function is describe.bivariate.probit(),
# which identifies mu1 and mu2 as systematic components, and an
# ancillary parameter rho, which may be parameterized, but is estimated
# as a scalar by default. Let par be the parameter vector (including
# parameters for rho), formulae a user-specified formula, and mydata
# the user specified data frame.
# Acceptable combinations of parse.par() and model.matrix() are as follows:
## Setting up
data(sanction)
formulae <- cbind(import, export) ~ coop + cost + target
fml <- parse.formula(formulae, model = "bivariate.probit")
D <- model.frame(fml, data = sanction)
terms <- attr(D, "terms")
## Intuitive option
Beta <- parse.par(par, terms, shape = "vector", eqn = c("mu1", "mu2"))
X <- model.matrix(fml, data = D, shape = "stacked", eqn = c("mu1", "mu2")
eta <- X
## Memory-efficient (compact) option (default)
Beta <- parse.par(par, terms, eqn = c("mu1", "mu2"))
X <- model.matrix(fml, data = D, eqn = c("mu1", "mu2"))
eta <- X
## Computationally-efficient (array) option
Beta <- parse.par(par, terms, shape = "vector", eqn = c("mu1", "mu2"))
X <- model.matrix(fml, data = D, shape = "array", eqn = c("mu1", "mu2"))
eta <- apply(X, 3, '
Run the code above in your browser using DataLab