I have a csv "pf.csv":
Jules,Winnfield
Vincent,Vega
Mia,Wallace
Marsellus,Wallace
And would like to specify a list of symbols which become the header when I read the csv. Normally I would load the csv like so:
("SS";enlist ",") 0: `$"pf.csv"
but that actually sets the first row as the keys in the flipped dictionary (i.e. the header in the table)
In the documentation for 0: I read
Optionally, 0: can take a three-item list as its second argument, containing the file handle, an offset at which to begin reading, and a length to read.
But that's inconvenient as the offset has to be given in number of characters and not in lines.