import_csv | R Documentation |
Import a dataset from a CSV or a XLSX file. It ensures that the right type of column is guessed using the max value of guess_max
import_csv(path, delim = ",", uuid = NULL, ...)
import_xlsx(path, sheet = 1, uuid = NULL, ...)
import_full_xlsx(path = NULL, uuid = NULL)
path |
The project relative path to the csv file |
delim |
Field separator, default is "," |
uuid |
Character string. Should we rename "submission_uuid" to "uuid" |
... |
Parameters to pass to readxl::read_xlsx or readr::read_delim |
sheet |
A character string of the sheet name or the sheet position |
A clean-names-and-types tibble
import_csv()
: Import a .csv file
import_xlsx()
: Import one sheet from a .xlsx
import_full_xlsx()
: Import all sheets from a .xlsx
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.