CSV

data class CSV(val delimiter: Char = ',', val header: List<String> = listOf(), val colTypes: Map<String, ColType> = mapOf(), val skipLines: Int = 0, val readLines: Int? = null, val duplicate: Boolean = true, val charset: Charset = Charsets.UTF_8, val parserOptions: ParserOptions? = null, val contentType: ContentType = TEXT_CSV) : DataFrameFormat

Constructors

Link copied to clipboard
constructor(delimiter: Char = ',', header: List<String> = listOf(), colTypes: Map<String, ColType> = mapOf(), skipLines: Int = 0, readLines: Int? = null, duplicate: Boolean = true, charset: Charset = Charsets.UTF_8, parserOptions: ParserOptions? = null, contentType: ContentType = TEXT_CSV)

Properties

Link copied to clipboard
Link copied to clipboard
val colTypes: Map<String, ColType>
Link copied to clipboard
open override val contentType: ContentType
Link copied to clipboard
val delimiter: Char = ','
Link copied to clipboard
val duplicate: Boolean = true
Link copied to clipboard
Link copied to clipboard
val parserOptions: ParserOptions? = null
Link copied to clipboard
val readLines: Int? = null
Link copied to clipboard
val skipLines: Int = 0

Functions

Link copied to clipboard
open operator override fun invoke(input: InputStream): DataFrame<*>