Learn R Programming

huxtable (version 4.0.1)

print.huxtable: Default print method for huxtables

Description

By default huxtables are printed using print_screen(). In certain cases, for example in Sweave documents, it may be useful to change this. You can do so by setting options(huxtable.print).

Usage

# S3 method for huxtable
print(x, ...)

# S3 method for huxtable format(x, ..., output)

Arguments

x

A huxtable.

...

Options passed to other methods.

output

One of "html", "latex", "md" or "screen"

Value

print prints the huxtable and returns NULL invisibly.

format returns a string representation from to_latex(), to_html() etc.

Examples

Run this code
# NOT RUN {
# to print LaTeX output:
options(huxtable.print = print_latex)
# to print huxtables like data frames:
options(huxtable.print = function(x, ...) print(as.data.frame(x)))
# }
# NOT RUN {
ht <- hux(a = 1:3, b = 4:6)
format(ht, output = 'screen')
format(ht, output = 'md')
# }

Run the code above in your browser using DataLab