import | R Documentation |
This import
function can import data from
delimited text files, simple JSON files, EXCEL spreadsheets,
and statistical packages such as SAS, SPSS, and Stata.
This wonderful.
import(file, ...)
file |
datafile to import. |
... |
parameters passed to the import function. |
The import function is wrapper for the haven, readxl, rjson and vroom packages.
a data frame
Complex nested JSON files will not be imported properly.
read_sas, read_dta, read_spss, read_excel, fromJSON, vroom
## Not run:
# import a comma delimited file
mydataframe <- import("mydata.csv")
# import a SAS binary file
mydataframe <- import("mydata.sas7bdat")
# import the second worksheet of an Excel workbook
mydataframe <- import("mydata.xlsx", sheet = 2)
# prompt for a file to import
mydataframe <- import()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.