Learn R Programming

Rapi (version 1.0.6)

excel: Creates an excel file from a data.frame or a list of data.frame or from Rapi_GETPREP object.

Description

The excel() function creates an excel file according to the object given. data.frame or List of data frame or Rapi_GETPREP object can be passed..

Usage

excel(
  dfs = null,
  file_name = null,
  folder = null,
  .debug = FALSE,
  env = rlang::caller_env(),
  ...
)

Value

it returns object or list of dataframe back

Arguments

dfs

object or list of data frame to write

file_name

file name to save

folder

folder to save file

.debug

for internal use

env

environment

...

for future versions

Examples

Run this code
if (FALSE) {
excel(data.frame(a = 1:3), file_name = "test1.xlsx", folder = ".")
}

Run the code above in your browser using DataLab