-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexcel.Rd
41 lines (36 loc) · 894 Bytes
/
excel.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/excel.R
\name{excel}
\alias{excel}
\title{Creates an excel file from a data.frame or a list of data.frame or from
Rapi_GETPREP object.}
\usage{
excel(
dfs = null,
file_name = null,
folder = null,
.debug = FALSE,
env = rlang::caller_env(),
...
)
}
\arguments{
\item{dfs}{object or list of data frame to write}
\item{file_name}{file name to save}
\item{folder}{folder to save file}
\item{.debug}{for internal use}
\item{env}{environment}
\item{...}{for future versions}
}
\value{
it returns object or list of \code{dataframe} back
}
\description{
The excel() function creates an excel file according to the object given.
\code{data.frame} or List of data frame or \code{Rapi_GETPREP} object can be passed..
}
\examples{
\dontrun{
excel(data.frame(a = 1:3), file_name = "test1.xlsx", folder = ".")
}
}