get1Dini: get1Dini

Description Usage Arguments Details Value References Examples

View source: R/manifold1Dplus.R

Description

Finds appropriate starting values for the 1D-algorithm.

Usage

1
  get1Dini(A,B)

Arguments

A

A √{n} estimate of an estimator's asymptotic covariance matrix.

B

A √{n} estimate of the parameter associated with the space we are enveloping. For our purposes this quantity is either the outer product of the MLE of the mean-value submodel parameter vector with itself or the outer product of the MLE of the canonical submodel parameter vector with itself.

Details

The 1D-algorithm is sensitive to starting values. Maximizers of the 1D-algorithm objective function are close to eigenvectors of A or (A+B). The vector, w, is the eigenvector of A or (A+B) which produces the largest value of the 1D-algorithm objective function.

Value

w

An appropriate starting value for the 1D-algorithm.

References

Cook, R.D. and Zhang, X. (2014). Foundations for Envelope Models and Methods. JASA, In Press.

Cook, R.D. and Zhang, X. (2015). Algorithms for Envelope Estimation. Journal of Computational and Graphical Statistics, Published online. doi: 10.1080/10618600.2015.1029577.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run: library(envlpaster)
data(simdata30nodes)
data <- simdata30nodes.asterdata
nnode <- length(vars)
xnew <- as.matrix(simdata30nodes[,c(1:nnode)])
m1 <- aster(xnew, root, pred, fam, modmat)
avar <- m1$fisher
beta <- m1$coef
U <- beta %o% beta
get1Dini(A = avar, B = U)
## End(Not run)

envlpaster documentation built on May 2, 2019, 2:10 a.m.