Skip to content

Commit

Permalink
Add documentation on supported quote_style values
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbarillas committed Jan 8, 2025
1 parent 5e82549 commit 9c973b8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/explorer/data_frame.ex
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,9 @@ defmodule Explorer.DataFrame do
* `:delimiter` - A single character used to separate fields within a record. (default: `","`)
* `:quote_style` - The quoting style to use. Possible values are `:necessary`, `:always`, `:non_numeric`, and `:never`.
(default: `:necessary`)
* `:config` - An optional struct, keyword list or map, normally associated with remote
file systems. See [IO section](#module-io-operations) for more details. (default: `nil`)
Expand Down Expand Up @@ -710,6 +713,8 @@ defmodule Explorer.DataFrame do
* `:header` - Should the column names be written as the first line of the file? (default: `true`)
* `:delimiter` - A single character used to separate fields within a record. (default: `","`)
* `:quote_style` - The quoting style to use. Possible values are `:necessary`, `:always`, `:non_numeric`, and `:never`.
(default: `:necessary`)
## Examples
Expand Down

0 comments on commit 9c973b8

Please sign in to comment.