Creates an image of a table from a dataframe.

create_pub_table(dataframe)

Arguments

dataframe

A dataframe object.

Value

The text table as an object that can be saved to png/tiff/jpg/pdf.

Examples

# NOT RUN {
if(interactive()){
# This example uses data that are no longer available in the MicrobiomeR package,
# however, they can be easily generated with \code{\link{MicrobiomeR}{as_basic_format}}.
 library(MicrobiomeR)
 data <- MicrobiomeR::basic_silva$data$taxa_abundance
 create_pub_table(data)
 }
# }