latex.lrm, latex.cph,
latex.psm and latex.ols. latex.cph has some
arguments that are specific to cph models.
latexrms is the core function which is
called internally by latexrms (which is called by
latex.cph, latex.ols, etc.). html and R
Markdown-compatible markup (using MathJax) are written if
options(prType='html').
latexrms(object, file='', append=FALSE, which=1:p, varnames, columns=65, prefix=NULL, inline=FALSE, before=if(inline)"" else "& &", after="", intercept, pretrans=TRUE, digits=.Options$digits, size="")rms series
.tex file to create, default is to write to console.
file is ignored when options(prType='html'.
object$Design$name)
specifying a submodel to print. Default is to describe the whole
model.
which can also be a vector of character strings specifying the
factor names to print. Enough of each string is needed to ensure
a unique match. Names for interaction effects are of the form
"age * sex". For any interaction effect for which you do not
request main effects, the main effects will be added to which.
When which is given, the model structural statement is not
included. In this case, intercepts are not included either.
object$Design$name and interactions must be omitted.
Default is
object$Design$name[object$Design$assume.code!=9]. varnames
can contain any LaTeX commands such as subscripts and "\\\\frac"
(all "\" must be quadrupled.)
Any "/" must be preceeded by "\\" (2, not 4 backslashes).
Elements of varnames for interactions are ignored; they can be
set to any value.
\lefteqn{prefix =} \\
will be inserted to print a left-hand-side of the equation.
TRUE to create text for insertion in an in-line equation. This
text contains only the expansion of X beta, and is not surrounded by
"$".
eqnarray environment. For inline=TRUE, the
before string, if not an empty string, will be placed once
before the entire markup.
inline=TRUE
latexrms rendition.
pretrans=FALSE.
"latex", or if options(prType='html'),
nothing (output direct to console)latex, rcspline.restate,
rms
## Not run:
# f <- lrm(death ~ rcs(age)+sex)
# w <- latex(f, file='f.tex')
# w # displays, using e.g. xdvi
# latex(f) # send LaTeX code to console, as for knitr
# options(prType='html')
# latex(f) # emit html and latex for knitr html and html notebooks
# ## End(Not run)
Run the code above in your browser using DataLab