printex | R Documentation |
The printex Method
printex(object, ParameterAs, printDyn = TRUE, printMeas = TRUE,
printInit = FALSE, printRS = FALSE, outFile, show, ...)
object |
The dynr object (recipe, model, or cooked model). |
ParameterAs |
The parameter values or names to plot. The underscores in parameter names are saved for use of subscripts. Greek letters can be specified as corresponding LaTeX symbols without ##' backslashes (e.g., "lambda") and printed as greek letters. |
printDyn |
logical. Whether or not to print the dynamic model. The default is TRUE. |
printMeas |
logical. Whether or not to print the measurement model. The default is TRUE. |
printInit |
logical. Whether or not to print the initial conditions. The default is FALSE. |
printRS |
logical. Whether or not to print the regime-switching model. The default is FALSE. |
outFile |
The name of the output tex file. |
show |
logical indicator of whether or not to show the result in the console. |
... |
Further named arguments, passed to internal method.
|
This is a general way of getting a LaTeX string for recipes, models, and cooked models. It is a great way to check that you specified the model or recipe you think you did before estimating its free parameters (cooking). After the model is cooked, you can use it to get LaTeX code with the estimated parameters in it.
Typical inputs to the ParameterAs
argument are (1) the starting values for a model, (2) the final estimated values for a model, and (3) the parameter names. These are accessible with (1) model$xstart
, (2) coef(cook)
, and (3) model$param.names
or names(coef(cook))
, respectively.
character text suitable for use fiel LaTeX
A way to put this in a plot with plotFormula
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.