dave08
06/18/2024, 9:58 AMDataframe.readDelimStr()
would be able to read space delimited or tab delimited formats (like lots of cli outputs use...), but it seems that it's stuck on CSV and doesn't even have an option to provide a delimiter...dave08
06/18/2024, 11:56 AMval spaceRegex = "\\s\\s+".toRegex()
fun String.spaceDelimToDataFrame() = split("\n").map { it.split(spaceRegex) }.toDataFrame()
dave08
06/18/2024, 11:57 AMroman.belov
06/18/2024, 6:54 PMreadTSV
function which actually I think does the trickNikita Klimenko [JB]
06/19/2024, 12:40 PM