csv

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

Reads a CSV file.