save_data_as_file | R Documentation |
Save Data as File
save_data_as_file(
input_df,
file_name,
delim = "|",
with_header = FALSE,
quote = FALSE
)
input_df |
A Data Frame. Note: can contain any arbitrary data fields. |
file_name |
The name of the file that will be saved (e.g. "my_data.txt"). |
delim |
A character that will be placed between data fields, in the output file (e.g. "|"). |
with_header |
Boolean. Will determine if the column names of input_df will be included in the output file. |
quote |
Boolean. If TRUE will wrap each data column in double quotes. |
** Saves data to local machine. **
The default location for the file to be saved is in a folder called "sensitive". If this folder does not exist, this function will not work.
Returns nothing.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.