var2cor {nlreg} | R Documentation |
Convert Covariance Matrix to Correlation Matrix — Generic Function
Description
This function converts the covariance matrix from a fitted model into the correlation matrix.
Usage
var2cor(object, ...)
Arguments
object |
any fitted model object from which a covariance matrix may be extracted. |
... |
absorbs any additional argument. |
Details
This function is generic (see methods
); method
functions can be written to handle specific classes of data.
Classes which already have methods for this function include:
nlreg
, summary.nlreg
, mpl
and summary.mpl
.
Value
the correlation matrix of the estimates from a fitted model.
See Also
var2cor.nlreg
, var2cor.mpl
,
methods
Examples
data(metsulfuron)
metsulfuron.nl <-
nlreg( log(area) ~ log( b1+(b2-b1) / (1+(dose/b4)^b3) ),
weights = ~( 1+dose^exp(g) )^2, data = metsulfuron,
start = c(b1 = 138, b2 = 2470, b3 = 2, b4 = 0.07, g = log(0.3)),
hoa = TRUE )
var2cor( metsulfuron.nl )
##
metsulfuron.sum <- summary( metsulfuron.nl, corr = FALSE )
var2cor( metsulfuron.sum )
[Package nlreg version 1.2-2.2 Index]