csv

fun csv(file: String, delimiter: String = ",", header: Boolean = true, quote: Char = '"', escape: Char = '\\', comment: Char? = null, schema: StructType? = null): DataFrame(source)
fun csv(file: Path, delimiter: String = ",", header: Boolean = true, quote: Char = '"', escape: Char = '\\', comment: Char? = null, schema: StructType? = null): DataFrame(source)
fun csv(file: String, format: CSVFormat, schema: StructType? = null): DataFrame(source)
fun csv(file: Path, format: CSVFormat, schema: StructType? = null): DataFrame(source)

Reads a CSV file.