diff options
Diffstat (limited to 'R/estpoly.R')
-rw-r--r-- | R/estpoly.R | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/R/estpoly.R b/R/estpoly.R index 993fc46..7664264 100644 --- a/R/estpoly.R +++ b/R/estpoly.R @@ -71,10 +71,10 @@ summary.estPoly <- function(object) #' @export print.summary.estPoly <- function(object,...){ - print(object$model) + print(object$model,...) cat("Call: ");print(object$call);cat("\n\n") - print(coef(object)) + print(coef(object),...) cat(paste("\nMSE:",format(object$mse,digits=4), "\tFPE:",format(object$fpe,digits=4))) if(object$model$type=="arx") cat(paste("\nDoF:",object$df)) |