ltx | R Documentation |
This (generic) function prints the LaTeX code of the results of a fit from
coxreg
, phreg
, tpchreg
,
or aftreg
, similar
to what xtable
does for fits from other functions.
ltx(
x,
caption = NULL,
label = NULL,
dr = NULL,
digits = max(options()$digits - 4, 3),
...
)
x |
The output from a call to |
caption |
A suitable caption for the table. |
label |
A label used in the LaTeX code. |
dr |
Output from a |
digits |
Number of digits to be printed. |
... |
Not used. |
The result is a printout which is (much) nicer than the standard printed
output from glm
and friends,
LaTeX code version of the results from a run with
coxreg
, phreg
, phreg
,
or aftreg
.
For printing confidence limits, use ltx2
.
Göran Broström.
ltx2
, coxreg
, phreg
,
phreg
, and aftreg
.
data(oldmort)
fit <- coxreg(Surv(enter, exit, event) ~ civ + sex, data = oldmort)
dr <- drop1(fit, test = "Chisq")
ltx(fit, dr = dr, caption = "A test example.", label = "tab:test1")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.