Print an extended cone diagnostic summary
Source:R/main_interface.R
print.summary.cone_diagnosis.RdPrints the extended report produced by summary.cone_diagnosis:
basic properties, spectral analysis (eigenvalues, condition number,
spread, stability band) and the method-selection rationale.
Usage
# S3 method for class 'summary.cone_diagnosis'
print(x, ...)Details
Side effect only: writes the formatted report to the console using the three-section layout (basic properties, spectral analysis, method rationale).
See also
summary.cone_diagnosis for the constructor of the summary
object; diagnose_cone, print.cone_diagnosis,
plot.cone_diagnosis for the rest of the S3 family.
Examples
if (FALSE) { # \dontrun{
V <- diag(4)
d <- diagnose_cone(V)
s <- summary(d)
print(s)
} # }