I'm trying using F# to clean a CSV dataset. For example I want to change string values in one column to lower case. I don't know if it's better to work with loaded data as CsvProvider Rows or I should create some struct and convert these Rows to struct list. Either way, how can I load CSV, modify values in one column and save the modified dataset to CSV again?
I've been searching the FSharp.Data documentation and other pages and I didn't find any relevant examples.