Is it possible to convert csv data with this format:
date,value1,value2,value3//CSV header
2015-11-04,58,221,12//second row csv
2015-11-05,62,234,18
2015-11-06,69,258,22
...
to this format?
[12,18,22,...]//Get the data from value3 field
The web references I have seen converts csv file to array, but not into the same format i have written above.
Thanks in advance.