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 y.

mean.model

Vector to specify the mean model to be fit to the data. The possible inputs are "zero", "constant", or a vector to indicate if covariates are to be "linear" or "semi". "semi" indicates a semi-parametric spline model, with the number of internal knots specified in knots.m. If covariates are fit, each covariate needs an indicator of "linear" or "semi", where mean.vars specifies each covariate.

mean.vars

Vector to specify column(s) in x referring to covariates to be fit in the mean model, eg c(1,2) indicates columns 1 and 2 in x. Must be the same length as mean.model which specifies if they are fit as linear/semi. If semi, use knots.m to specify knots.

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 "semi" covariate in mean.model. Knots are placed equidistantly over each covariate.

var.model

Vector to specify the variance model to be fit to the data. The possible inputs are "constant", or a vector to indicate if each covariate is to be "linear" or "semi". "semi" indicates a semi-parametric B-spline model, with the number of internal knots specified in knots.v.

var.vars

Vector to specify column(s) in x referring to covariates to be fit in the variance model, eg c(1,2) indicates columns 1 and 2 in x. Must be the same length as var.model which specifies if they are fit as linear/semi. If semi, use knots.v to specify knots.

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 2.

control

list of control parameters. See VarReg.control.

...

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:

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)

[Package VarReg version 2.0 Index]