print.edr {EDR} | R Documentation |
The function provides information on the estimated effective dimension reduction (EDR) space.
print.edr(x, m = 1, R = NULL, ...)
x |
Object of class "edr" . |
m |
Dimension of the effective dimension reduction (EDR) space. m=1
corresponds to single index models, m>1 specifies a multiindex model.
Determines the number of eigenvectors and cumulative eigenvalues to show. |
R |
If code R specifies a matrix (dimension c(k,d) , k>=m,
d=dim(x$x)[2] , this matrix is interpreted as spanning the true
EDR space. Two distances between the estimated EDR space and the space spanned
R[1:m,] are computed. |
... |
Additional parameters will be ignored |
Provides information on the estimated effective dimension reduction (EDR) space.
The first m
basis vectors and the cummulative sum of normalized eigenvalues of matrix
object$bhat
are given. If R
is specified the distance
||R (I- hat{P}_m)||/||R||
and the distance specified by Li (1992) are computed.
Returns invisible{NULL}
.
Joerg Polzehl, polzehl@wias-berlin.de
edr
, edr.R
, summary.edr
, plot.edr
require(EDR) ## Not run: demo(edr_ex1) ## Not run: demo(edr_ex2)