diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2022-11-08 08:46:57 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2022-11-08 08:46:57 +0100 |
commit | 56415f3c0638725aaa77db2c02eeaf9d4983452b (patch) | |
tree | fa935e34c86b6be05b7e4384fb84323681f5d485 /R/summary.mkinfit.R | |
parent | 7186006740aca909660e42dce8d92eb4735af533 (diff) |
Show DFOP g equivalent of SFORB in summary, test
Diffstat (limited to 'R/summary.mkinfit.R')
-rw-r--r-- | R/summary.mkinfit.R | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/R/summary.mkinfit.R b/R/summary.mkinfit.R index 4122873f..c25b836e 100644 --- a/R/summary.mkinfit.R +++ b/R/summary.mkinfit.R @@ -6,14 +6,14 @@ #' and optionally the data, consisting of observed, predicted and residual #' values. #' -#' @param object an object of class \code{\link{mkinfit}}. +#' @param object an object of class [mkinfit]. #' @param x an object of class \code{summary.mkinfit}. #' @param data logical, indicating whether the data should be included in the -#' summary. +#' summary. #' @param distimes logical, indicating whether DT50 and DT90 values should be -#' included. +#' included. #' @param alpha error level for confidence interval estimation from t -#' distribution +#' distribution #' @param digits Number of digits to use for printing #' @param \dots optional arguments passed to methods like \code{print}. #' @importFrom stats qt pt cov2cor @@ -37,7 +37,8 @@ #' \item{ff}{The estimated formation fractions derived from the fitted #' model.} #' \item{distimes}{The DT50 and DT90 values for each observed variable.} -#' \item{SFORB}{If applicable, eigenvalues of SFORB components of the model.} +#' \item{SFORB}{If applicable, eigenvalues and fractional eigenvector component +#' g of SFORB systems in the model.} #' The print method is called for its side effect, i.e. printing the summary. #' @author Johannes Ranke #' @references FOCUS (2006) \dQuote{Guidance Document on Estimating Persistence @@ -264,7 +265,7 @@ print.summary.mkinfit <- function(x, digits = max(3, getOption("digits") - 3), . printSFORB <- !is.null(x$SFORB) if(printSFORB){ - cat("\nEstimated Eigenvalues of SFORB model(s):\n") + cat("\nEstimated Eigenvalues and DFOP g parameter of SFORB model(s):\n") print(x$SFORB, digits=digits,...) } |