Closed
Description
Currently, the delimiter =
in the DataFrame.read()
in csv.kt function has no default value. This causes that read function to fail unless you explicitly specify it.
We should either:
- remove the read overload, as it's called "read" and not "readCsv". Shouldn't this be a generic function?
- Add
','
as default delimiter, just as in thereadCSV()
function.