This function is a wrapper for openxlsx::createWorkbook(), but also adds an info sheet including e.g. the time it was created.

create_wb(
  fontSize = 10,
  fontName = "Arial",
  infosheet = TRUE,
  infosheetlabel = "BioMath GmbH",
  ...
)

Arguments

fontSize

font size

fontName

Name of a font

infosheet

Should an info sheet be created?

infosheetlabel

Label for the info sheet

...

Other arguments passed to openxlsx::createWorkbook()

Value

Workbook object (see openxlsx)

Examples

wb1 <- create_wb()

wb2 <- create_wb(infosheet = FALSE)