Print Method for Seroincidence Summary Object
Source:R/print.summary.seroincidence.by.R
print.summary.seroincidence.by.Rd
Custom print()
function for "summary.seroincidence.by" objects (constructed by summary.seroincidence.by()
)
Usage
# S3 method for class 'summary.seroincidence.by'
print(x, ...)
Arguments
- x
A "summary.seroincidence.by" object (constructed by
summary.seroincidence.by()
)- ...
Additional arguments affecting the summary produced.
Examples
if (FALSE) { # \dontrun{
# Estimate seroincidence
seroincidence <- est.incidence.by(...)
# Calculate summary statistics for the seroincidence object
seroincidenceSummary <- summary(seroincidence)
# Print the summary of seroincidence object to the console
print(seroincidenceSummary)
# Or simply type (appropriate print method will be invoked automatically)
seroincidenceSummary
} # }