CsvExportOptions
Defined in: src/dataframe/types.ts:21
Csv export options to be used in DataFrame.toCsv
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
columnFormats? | ColumnsFormatCsvExportOptions | Column-specific formats (column name -> format). For format examples, see [dateTimeFormatters]. | src/dataframe/types.ts:61 |
columns? | string[] | Column order | src/dataframe/types.ts:51 |
delimiter? | string | Field delimiter; comma if not specified | src/dataframe/types.ts:24 |
filteredRowsOnly? | boolean | Whether only filtered rows are included. Will be combined with [selectedRowsOnly]. | src/dataframe/types.ts:42 |
includeHeader? | boolean | Whether the header row containing column names is included. True if not specified. | src/dataframe/types.ts:33 |
includeUtf8Bom? | boolean | Whether to include UTF-8 BOM marker at the beginning of the file. Helps Excel correctly detect UTF-8 encoding for multibyte characters. | src/dataframe/types.ts:67 |
missingValue? | string | Textual representation of the missing value. Empty string if not specified. | src/dataframe/types.ts:30 |
moleculesAsSmiles? | boolean | - | src/dataframe/types.ts:57 |
newLine? | string | New line character; \n if not specified | src/dataframe/types.ts:27 |
qualifierAsColumn? | boolean | Expands qualified numbers into two columns: qual(column) and column | src/dataframe/types.ts:54 |
rowIndexes? | number[] | Explicitly defined order of rows. Mutually exclusive with [selectedRowsOnly] or [filteredRowsOnly]. | src/dataframe/types.ts:48 |
selectedColumnsOnly? | boolean | Whether only selected columns are included. False if not specified. | src/dataframe/types.ts:36 |
selectedRowsOnly? | boolean | Whether only selected rows are included. Will be combined with [filteredRowsOnly]. | src/dataframe/types.ts:45 |
visibleColumnsOnly? | boolean | Whether only visible columns are included. False if not specified. | src/dataframe/types.ts:39 |