Export a dataset to a file
This function allows you to write a CrunchDataset to a .csv or SPSS .sav file.
exportDataset( dataset, file, format = c("csv", "spss"), categorical = c("name", "id"), na = NULL, varlabel = c("name", "description"), include.hidden = FALSE, ... ) ## S4 method for signature 'CrunchDataset' write.csv(x, ...)
dataset |
CrunchDataset, which may have been subsetted with a filter expression on the rows and a selection of variables on the columns. |
file |
character local filename to write to |
format |
character export format: currently supported values are "csv" and "spss". |
categorical |
character: export categorical values to CSV as category "name" (default) or "id". Ignored by the SPSS exporter. |
na |
Similar to the argument in
|
varlabel |
For SPSS export, which Crunch metadata field should be used as variable labels? Default is "name", but "description" is another valid value. |
include.hidden |
logical: should hidden variables be included? (default: |
... |
additional options. See the API documentation. Currently supported
boolean options include 'include_personal' for personal variables (default:
|
x |
(for write.csv) CrunchDataset, which may have been subsetted with a filter expression on the rows and a selection of variables on the columns. |
Invisibly, file
.
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.