Load Data
loadData(
path,
type = c("xlsx", "xls", "odt", "csv", "txt"),
nrows = NA_integer_,
sep = ",",
dec = ".",
fileEncoding = "",
colNames = TRUE,
sheet = 1,
verbose = TRUE
)(data.frame) data loaded from the file at path
path to the file
(character) type of file, one of c("xlsx", "xls", "odt", "csv", "txt")
integer: the maximum number of rows to read in. Negative and other invalid values are ignored.
the field separator character. Values on each line of the
file are separated by this character. If sep = "" (the
default for read.table) the separator is ‘white space’,
that is one or more spaces, tabs, newlines or carriage returns.
the character used in the file for decimal points.
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
file, the ‘R Data Import/Export’ manual and
‘Note’.
If TRUE, the first row of data will be used as column names.
The name or index of the sheet to read data from.
Logical, indicating whether to display processing messages. If TRUE, messages will be displayed; if FALSE, messages will be suppressed. Default is TRUE.