I have the code in python below:
file = #somepath
data = pd.read_csv(file, error_bad_lines=False)
Essentially, I am able to use pandas to manipulate data within a csv. However, I now want to use Javascript to manipulate csv data.
Desired outcome:
Ability to import csv file, split into 20 sections with each section being its own variable, and then accessing the columns for each section
Any idea how I can accomplish this?