"Gauss"
Object
Gauss
.
print.Gauss(x, ...)
"Gauss"
to be printed.
"Gauss"
object.
This is a method for the function
print
for objects inheriting
from class
"Gauss"
. See
or
for the
general behavior of this function.
fit <- emGauss(cholesterol) fit$paramIter print(fit$paramIter) #same print.Gauss(fit$paramIter) #same paramIter(fit, save= 1:2) # same paramIter(fit) # gives last iteration only, by default param <- paramIter(fit, expand = T) param$mu # estimate of mean param$sigma # estimate of covariance