diff options
-rw-r--r-- | R/idframe.R | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/R/idframe.R b/R/idframe.R index 265bca7..d4b2359 100644 --- a/R/idframe.R +++ b/R/idframe.R @@ -82,9 +82,9 @@ summary.idframe <- function(x){ #' @export print.summary.idframe <- function(x,...){ - cat("\t\t Number of samples:");cat(object$nsample) + cat("\t\t Number of samples:");cat(x$nsample) cat("\nSampling time: ") - cat(object$Ts);cat(" ");cat(object$unit) + cat(x$Ts);cat(" ");cat(x$unit) cat("\n\n") cat("Outputs \n") |