Usage
## S3 method for class 'ten':
print(x, ..., maxRow = getOption("datatable.print.nrows", 50L),
nRowP = getOption("datatable.print.topn", 5L), pRowNames = TRUE,
maxCol = getOption("survMisc.maxCol", 8L),
nColSP = getOption("survMisc.nColSP", 7L),
sigDig = getOption("survMisc.sigDig", 2L))## S3 method for class 'COV':
print(x, ..., n = 2L)
## S3 method for class 'lrt':
print(x, ..., dist = c("n", "c"))
## S3 method for class 'sup':
print(x, ...)
## S3 method for class 'tableAndPlot':
print(x, ..., hideTabLeg = TRUE, tabHeight = 0.25)
## S3 method for class 'stratTableAndPlot':
print(x, ..., hideTabLeg = TRUE,
tabHeight = 0.25)
Arguments
...
Additional arguments (not implemented).
--print.ten
maxRow
Maximum number of rows to print.
If nrow(x) > maxRow, just the first and last
nRowP (below) are printed.
The default value is that used by data.table.
nRowP
Number of rows to print from
the start and end of the object. Used if nrow(x) > maxRow.
pRowNames
Print row names?
Default is TRUE.
maxCol
Maximum number of columns to print.
If ncol(x) > maxCol, just the first nColSP
and last maxCol - nColSP columns are printed.
nColSP
Number of columns to print from
the start of the object. Used if Used if ncol(x) > maxCol.
sigDig
Significant digits. This is passed as an argument to
?signif
when preparing the object for printing.
--print.tableAndPlot and print.tableAndPlot
hideTabLeg
Hide table legend.
tabHeight
Table height (relative to whole plot).
--print.COV
n
Similar to n from e.g.
?utils::head
--print.lrt
dist
Which distribution to use for the statistics
when printing.
Default (dist="n") prints $Z$ and $p$ values
based on the normal distribution.
If dist="c", gives values based on the
$\chi^2$ distribution.
The results are the sa