File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ Write a DataFrame to a CSV (comma-separated values) file.
201
201
- `missing_value`: = "": The string to represent missing values in the output file. Default is an empty string.
202
202
- `append`: Whether to append to the file if it already exists. Default is false.
203
203
- `col_names`: = true: Whether to write column names as the first line of the file. Default is true.
204
- - `eol`: = " \n ": The end-of-line character to use in the output file. Default is the newline character.
204
+ - `eol`: The end-of-line character to use in the output file. Default is the newline character.
205
205
- `num_threads` = Threads.nthreads(): The number of threads to use for writing the file. Default is the number of available threads.
206
206
207
207
# Examples
@@ -223,7 +223,7 @@ Write a DataFrame to a TSV (tab-separated values) file.
223
223
- `missing_value`: = "": The string to represent missing values in the output file. Default is an empty string.
224
224
- `append`: Whether to append to the file if it already exists. Default is false.
225
225
- `col_names`: = true: Whether to write column names as the first line of the file. Default is true.
226
- - `eol`: = " \n ": The end-of-line character to use in the output file. Default is the newline character.
226
+ - `eol`: The end-of-line character to use in the output file. Default is the newline character.
227
227
- `num_threads` = Threads.nthreads(): The number of threads to use for writing the file. Default is the number of available threads.
228
228
229
229
# Examples
@@ -416,6 +416,7 @@ julia> read_sas("test.xpt")
416
416
─────┼──────────────────
417
417
1 │ sav 10.1
418
418
2 │ por 10.2
419
+ ```
419
420
"""
420
421
421
422
const docstring_read_sav =
You can’t perform that action at this time.
0 commit comments