dataOptions {Pandora} | R Documentation |
Data Options
Description
Set options for utils::read.csv()
, openxlsx::read.xlsx()
or
readxl::read_excel
. Choose delimiter and decimal separator as well
as sheetnumbner and number of rows to read.
Usage
dataOptions(
nrows = NA_integer_,
colNames = TRUE,
sep = ",",
dec = ".",
fileEncoding = "",
sheet = 1
)
Arguments
nrows |
integer: the maximum number of rows to read in. Negative and other invalid values are ignored. |
colNames |
If |
sep |
the field separator character. Values on each line of the
file are separated by this character. If |
dec |
the character used in the file for decimal points. |
fileEncoding |
character string: if non-empty declares the
encoding used on a file (not a connection) so the character data can
be re-encoded. See the ‘Encoding’ section of the help for
|
sheet |
The name or index of the sheet to read data from. |
Value
a list of extra options for utils::read.csv()
or openxlsx::read.xlsx()
or
readxl::read_excel
, respectively