Facade to writing data frame into various file formats.

lfq_write_table(x, path, name, format = c("xlsx", "csv", "html"))

Arguments

x

data.frame

path

path to write to

name

file name

format

formats to write to.

Value

list with paths to files written

Examples

x<- data.frame(a = 1:3, b = 4:6 )

lfq_write_table(x, tempdir() , "test", format = c( "csv", "xlsx",  "html"))
#> writing csv
#> writing xlsx
#> write html