"read in csv file skip first n lines"
Hi,
when importing csv files, is there any method to skip lines in the beginning of a file?
Something that behaves like R's "read.table"-option "skip".
Quite some time I'd like to read in csv files that have a structure like windows' ini-files:
[Header]
some garbage here
some non-relevant info here
[Data]
Var1,Var2,Var3,...
0,1,0,...
....
I'd like to start reading the file in the line "Var1,Var2,.."
Just can't find any option to get this done :-(
Best
Josef