Hi I want to convert my CSV data into JSON format however the JSON file is input for TPOT AI Fabric model which accepts JSON in a specific format such as:
{“Mango”:[5],“Orange”:[3],“Banana”:[4],“Grapes”:[6]}
Where as I can get CSV to JSON data in a format of :
{“Mango”:“5”,“Orange”:“3”,“Banana”:“4”,“Grapes”:“6”} using few custom Datatable to JSON activities.
Any suggestion on how can I achieve {“Mango”:[5],“Orange”:[3],“Banana”:[4],“Grapes”:[6]} from csv ?