Adapter to read a DataFrame via DataFrame.read.
- Since
0.1.0
- Companion
- object
Value members
Concrete methods
Reading a DataFrame from CSV format.
Reading a DataFrame from CSV format.
- Since
0.1.0
Reading a DataFrame from CSV format.
Reading a DataFrame from CSV format.
- Value Params
- charset
Charset decoding. If unset, uses the JVM default (UTF-8).
- columnDecoders
Decoders for parsing the correct data type for specific columns.
- defaultDecoders
Decoders for parsing the correct data type. If unset, uses the standard set.
- delimiter
Delimiter character between columns. If unset, inferred from file.
- header
If true, reads column names from the header line.
- lineSeparator
Line separator. If unset, inferred from file.
- nullEncoding
Representation of an undefined (missing) value. The default is an empty string.
- nullEncodingEnabled
If true, interprets the string set as
nullEncodingas undefined (missing) value.- quote
Quote character. If unset, inferred from file.
- rowLimit
The maximal number of lines to be read, where -1 (or smaller) is treated as unlimited rows.
- rowsSkipped
The number of initial lines to be skipped, where 0 (or smaller) does not skip any initial lines.
- skipEmptyLines
If true, empty lines are not read.
- Since
0.1.0