poissonMTinitial: Initial Robust Estimates based on MT robust method for...

Description Usage Arguments Value Author(s) References See Also Examples

View source: R/poissonMTinitial.R

Description

poissonMTinitial is used to provides a robust initial estimate for fit generalized linear models. The model is specified by the x and y components.

Usage

1
2
3
4
poissonMTinitial(x, y, stage2 = TRUE, alpha = c(0.025, 0.025),
  tol = 1e-04, cc = 2.3, psi = "bisquare", maxit = 20,
  zero = sqrt(.Machine$double.eps), replace.small = 0.5, start = NULL,
  na.to.zero = TRUE)

Arguments

x

design matrix of dimension n * p.

y

vector of observations of length n.

stage2

logical, the second stage should be performed?

alpha

quantile orders used in the second stage.

tol

convergence tolerance for the parameter vector.

cc

tuning constant c for Tukey's bisquare psi-function.

psi

the name of the psi function. At the moment only the bisquare is available.

maxit

integer specifying the maximum number of IRWLS iterations.

zero

eigenvalues smaller than zero will be considered exactly equal to 0.

replace.small

all the observations y smaller than replace.small are replaced by replace.small value.

start

eventual starting values, as a reference, for the parameters in the linear predictor.

na.to.zero

logical, should the eventual NA in the coefficients be replaced by 0?

Value

A list with the following components

coefficients1

initial value proposed at the end of the first stage.

obj1

value of the MT objective function at coefficients1.

coefficients2a

initial value proposed at the end of the first part od the second stage.

obj2a

value of the MT objective function at coefficients2a.

coefficients2b

initial value proposed at the end of the second part od the second stage.

obj2b

value of the MT objective function at coefficients2b.

coefficients

initial value proposed.

obj

value of the MT objective function at coefficients.

Author(s)

Claudio Agostinelli, Marina Valdora and Victor J. Yohai

References

C. Agostinelli, M. Valdora and V.J Yohai (2018) Initial Robust Estimation in Generalized Linear Models with a Large Number of Covariates. Submitted.

M. Valdora and V.J. Yohai (2014) Robust estimators for generalized linear models. Journal of Statistical Planning and Inference, 146, 31-48.

See Also

poissonMT and poissonL2T

Examples

1
2
3
4
5
  data(epilepsy)
  x <- model.matrix( ~ Age10 + Base4*Trt, data=epilepsy)
  poissonMTsetwd(tempdir())
  start <- poissonMTinitial(x=x, y=epilepsy$Ysum)$coefficients
  start

poissonMT documentation built on May 2, 2019, 11:01 a.m.