read To Rows
Reads data from a csv file that has the first row as a header of column labels and each subsequent row as the data for each row, e.g. "x", "y" 1.1, 2.0 4.3, 6.4 etc. The List names will hold ("x", "y"). If names has strings it will be cleared. The returned array will hold data0 = {1.1, 2.0} data1 = {4.3, 6.4} etc.
Return
the filled array of arrays
Parameters
names
the list to fill with header names
path To File
the path to the file