residuals.acdFit()
returns the residuals and coef.acdFit()
returns the coefficients of a fitted ACD model of class 'acdFit', while print.acdFit()
prints the essential information. predict.acdFit()
predicts the next N
durations by thier expected value.
# S3 method for acdFit
residuals(object, ...)
# S3 method for acdFit
coef(object, returnCoef = "all", ...)
# S3 method for acdFit
print(x, ...)
# S3 method for acdFit
predict(object, N = 10, ...)
the fitted ACD model of class 'acdFit' (as returned by the function acdFit
).
same as object
, ie. an object of class 'acdFit'.
on of "all", "distribution", or "model". Specifies whether all estimated parameters should be returned or only the distribution parameters or the model (for the conditional mean duration) parameters.
the number of the predictions in predict
.
additional arguments to print
.