rsteppac
07/29/2024, 5:53 PMgroupBy
operations to CSV data that I have read in with DataFrame.
val df = DataFrame.readCSV(
file = ClassPathResource("test.csv").file,
delimiter = '|',
)
.groupBy { "customerDesignation" and "contractNr" }
.into("connectors")
How to go from here and introduce another groupBy
inside the connectors
group?Jolan Rensen [JB]
07/31/2024, 10:35 AM