print_preprocessing {rjdmarkdown} | R Documentation |
Print the pre-processing model
Description
Function to print the pre-processing model
Usage
print_preprocessing(
x,
format = knitr::opts_knit$get("rmarkdown.pandoc.to"),
signif.stars = TRUE,
digits = 3,
decimal.mark = getOption("OutDec"),
booktabs = TRUE,
summary = TRUE,
likelihood = TRUE,
arima = TRUE,
regression = TRUE,
...
)
Arguments
x |
the object to print. |
format |
output format: |
signif.stars |
logical; if |
digits |
number of digits after the decimal point. |
decimal.mark |
the character to be used to indicate the numeric decimal point. |
booktabs |
boolean indicating whether to use or not the booktabs package (when |
summary |
boolean indicating whether to use or not the summary section. |
likelihood |
boolean indicating whether to use or not the likelihood section. |
arima |
boolean indicating whether to use or not the arima section. |
regression |
boolean indicating whether to use or not the regression section. |
... |
unused. |
Examples
ipi <- RJDemetra::ipi_c_eu[, "FR"]
sa_x13 <- RJDemetra::jx13(ipi)
print_preprocessing(sa_x13, format = "latex")
sa_ts <- RJDemetra::tramoseats(ipi)
print_preprocessing(sa_ts, format = "html")
[Package rjdmarkdown version 0.2.2 Index]