list2excel: Write a list of data frames to an Excel file

Description Usage Arguments Examples

View source: R/datafunctions.R

Description

Write a list of data frames to an Excel file

Usage

1
list2excel(excel_list, filename, n_chunk_cols = Inf, cell_fit = FALSE)

Arguments

excel_list

a data.frame/table or list of them

filename

filename to save workbook to

n_chunk_cols

if multiple data sets on one sheet, specify number of cols for each subset

Examples

1
2
3
excel_list <- list(iris=iris, apply(iris3, 3, as.data.frame))
list2excel(excel_list, "~/test_mejr_excel.xlsx", n_chunk_cols=2)
list2excel(iris, "~/test_mejr_excel.xlsx", cell_fit=TRUE)

iamamutt/mejr documentation built on May 18, 2019, 1:27 a.m.