latexrms {rms} | R Documentation |
Creates a file containing a LaTeX representation of the fitted model. For
model-specific typesetting there is latex.lrm
, latex.cph
,
latex.psm
and latex.ols
. latex.cph
has some
arguments that are specific to cph
models. These routines work
with the display
package from statlib to display and print the
formatted model fits. latexrms
is the core function which is
called internally by latexrms
(which is called by
latex.cph
, latex.ols
, etc.).
latexrms(object, file=paste(first.word(deparse(substitute(object))),".tex",sep=""), append=FALSE, which=1:p, varnames, columns=65, prefix=NULL, inline=FALSE, before=if(inline)"" else "& &", after="", intercept, pretrans=TRUE, digits=.Options$digits, size="") ## S3 method for class 'rms' latex(object, title, file=paste(first.word(deparse(substitute(object))),'tex',sep='.'), ...)
object |
a fit object created by a fitting function in the |
file |
name of |
append |
whether or not to append to an existing file |
which |
a vector of subcripts (corresponding to |
varnames |
variable names to substitute for non-interactions. Order must correspond
to |
columns |
maximum number of columns of printing characters to allow before outputting a LaTeX newline command |
prefix |
if given, a LaTeX \lefteqn command of the form |
inline |
Set to |
before |
a character string to place before each line of output. Use the default
for a LaTeX |
after |
a character string to place after the output if |
intercept |
a special intercept value to include that is not part of the standard
model parameters (e.g., centering constant in Cox model). Only allowed
in the |
pretrans |
if any spline or polynomial-expanded variables are themselves
transformed, a table of pre-transformations will be formed unless
|
digits |
number of digits of precision to use in formatting coefficients and other numbers |
size |
a LaTeX font size to use for the output, without the slash. Default is current size. |
title |
ignored |
... |
other arguments in ... will be passed to |
a file name of class "latex"
Frank Harrell
Department of Biostatistics, Vanderbilt University
f.harrell@vanderbilt.edu
## Not run: f <- lrm(death ~ rcs(age)+sex) w <- latex(f) w # displays, using e.g. xdvi latex(f, file="") # send LaTeX code to screen ## End(Not run)