Learn R Programming

ExtDist (version 0.3.3)

eDist: S3 methods from manuplating eDist objects.

Description

S3 methods from manuplating eDist objects

Usage

## S3 method for class 'eDist':
logLik(object, ...)

## S3 method for class 'eDist': AIC(object, ..., k = 2)

## S3 method for class 'eDist': BIC(object, ...)

## S3 method for class 'eDist': vcov(object, ..., corr = FALSE)

## S3 method for class 'eDist': print(x, ...)

Arguments

object,x
a eDist object, which is the output of the parameter estimation functions.
...
other parameters
k
numeric, the penalty per parameter to be used; the default k = 2 is the classical AIC.
corr
logic, if the vcov return correlation matrix (instead of variance-covariance matrix) or not.

Details

S3 methods from manuplating eDist objects.

Examples

Run this code
X <- rnorm(20)
est.par <- eNormal(X, method ="numerical.MLE")
logLik(est.par)
AIC(est.par)
BIC(est.par)
vcov(est.par)
vcov(est.par,corr=TRUE)
print(est.par)

Run the code above in your browser using DataLab