I have a CSV file that is structured as follows:
- Date (mm/dd/yyyy)
- Experiment Number (1)
- Header (several lines of text)
- colN1 colN2 colN3 ...
- data11 data12 data13 ...
- data21 data22 data23 ... ...
Repetitive up to experiment 52. Now, the number of dataNX is not fixed meaning that the size of each table is different. I would like to read this data into a RSQLite database where I can query each experiment number and get the table that corresponds to it but I am not sure how. Kindly help.