semiVarReg.multi {VarReg} | R Documentation |
Semi parametric mean and variance regression (multivariate)
Description
semiVarReg.multi
performs semi-parametric mean and variance regression models. This is
designed for multiple covariates fit in the mean and variance models.
Usage
semiVarReg.multi(
y,
x,
mean.model = c("zero", "constant", "linear", "semi"),
mean.vars = c(1),
knots.m = NULL,
var.model = c("constant", "linear", "semi"),
var.vars = c(1),
knots.v = NULL,
degree = 2,
control = list(...),
...
)
Arguments
y |
Vector containing outcome data. Must be no missing data and any censored values must be set to the limits of detection. |
x |
Matrix containing the covariate data. Must be no missing data and same length as |
mean.model |
Vector to specify the mean model to be fit to the data. The possible inputs are
|
mean.vars |
Vector to specify column(s) in |
knots.m |
Vector indicating the number of internal knots to be fit in each of covariate(s) fit in the semi-parametric
mean model. Must be one entry per |
var.model |
Vector to specify the variance model to be fit to the data. The possible inputs are
|
var.vars |
Vector to specify column(s) in |
knots.v |
Vector indicating the number of internal knots to be fit in the semi-parametric variance model. Knots are placed equidistantly over the covariate. |
degree |
Integer indicating the degree of the splines fit in the mean and the variance models.
The default value is |
control |
list of control parameters. See |
... |
arguments to be used to form the default control argument if it is not supplied directly |
Value
semiVarReg.multi
returns an object of class "VarReg"
which inherits some components from the class "glm"
. This object of class "VarReg"
is a list containing the following components:
modeltype
: Text indicating the model that was fit, indicating an uncensored approach was performed.knots.m
,knots.v
,degree
,meanmodel
,varmodel
: Returning the input variables as described aboveconverged
: Logical argument indicating if convergence occurred.iterations
: Total iterations performed.reldiff
: the positive convergence tolerance that occurred at the final iteration.loglik
: Numeric variable of the maximised log-likelihood.boundary
: Logical argument indicating if the MLE is on the boundary of the parameter space.aic.c
: Akaike information criterion corrected for small samplesaic
: Akaike information criterionbic
: Bayesian information criterionhqc
: Hannan-Quinn information criterionmean.ind
: Vector of integer(s) indicating the column number(s) in the dataframedata
that were fit in the mean model.mean
: Vector of the maximum likelihood estimates of the mean parameters.-
var.ind
: Vector of integer(s) indicating the column(s) in the dataframedata
that were fit in the variance model. variance
: Vector of the maximum likelihood estimates of the variance parameters.data
: Dataframe containing the variables included in the model.
Examples
data(mcycle)
## run a model with linear mean and linear variance:
linmodel<-semiVarReg.multi(mcycle$accel, x=mcycle, mean.model="linear",mean.vars=2,
var.model="linear", var.vars=2, maxit=10000)
## run a model with semi-parametric mean (4 internal knots) and semi-parametric variance (2 knots):
##not run
##semimodel<-semiVarReg.multi(mcycle$accel, x=mcycle, meanmodel="semi",mean.vars=2, varmodel="semi",
##var.vars=2,knots.m=4, knots.v=2, maxit=10000)