read_db | R Documentation |
A helper utility to handle reading of spreadsheet files.
read_db(file, filetype = "auto", ...)
file |
The name of the file to be read. |
filetype |
The filetype of the input spreadsheet. Microsoft Excel
( |
... |
Additional parameters passed to the file reader. The parameters accepted depend on the input filetype. |
This function should not need to be called directly by the user.
The code used to read the file depends on the filetype. The filetype is
determined by the extension given in the file
parameter or can be
overridden by the filetype
parameter. For more information about file
reading parameters, have a look at the documentation for the respective
packages: read_excel
for reading .xlsx
and
.xls
files. read_ods
for reading .ods
files. This is the Open Document standard used by software such as OpenOffice
and LibreOffice. read.csv
for reading .csv
files.
If filetype = 'csv2'
, then read.csv2
is used
(where commas are used as decimal separators as is common in Europe).
read.delim
for reading .tsv
, .tab
,
.txt
files. This is just tab-delimited text.
make_ids
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.