diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2019-02-25 15:27:41 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2019-02-25 15:27:41 +0100 |
commit | c90fdefb4cd438ae71c613f676c2ff6631d0a7a3 (patch) | |
tree | af75932b6db1e94e1ecbfa9483b82f7f35f7afce /R/nafta.R | |
parent | be809ea23b256f627216958fcd90489ee0844ab8 (diff) |
Static documentation rebuilt by current pkgdown
Diffstat (limited to 'R/nafta.R')
-rw-r--r-- | R/nafta.R | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -65,7 +65,10 @@ plot.nafta <- function(x, legend = FALSE, main = "auto", ...) { } print.nafta <- function(x, quiet = TRUE, ...) { - cat("Parameters:\n") + cat("Sums of squares:\n") + print(x$S) + print(x$S_c) + cat("\nParameters:\n") print(x$parameters) t_rep <- .evaluate_nafta_results(x$S, x$S_c, x$distimes, quiet = quiet) cat("\nDTx values:\n") @@ -95,8 +98,9 @@ print.nafta <- function(x, quiet = TRUE, ...) { t_rep <- t_IORE } else { if (!quiet) { - message("The representative half-life of the IORE model is longer than the one corresponding to the terminal degradation rate found with the DFOP model.") - message("The reprentative half-life obtained from the DFOP model may be used") + message("The representative half-life of the IORE model is longer than the one corresponding") + message("to the terminal degradation rate found with the DFOP model.") + message("The representative half-life obtained from the DFOP model may be used") } t_rep <- t_DFOP2 } |