I have 20 datasets, and some of them have introductions in the first few rows. Since not all the dataset have introduction and the number of rows of introductions from different datasets may not be the same, therefore skip_rows may not be useful. Is it possible to catch the keywords and start reading from the row that contains keywords?
Sample dataset:
dataset 1:
| balabala | balabala... |
|---|---|
| A header | Another header |
| First | row |
| Second | row |
dataset 2:
| A header | Another header |
|---|---|
| First | row |
| Second | row |
dataset 3:
|balabala | balabala... | |balabala | balabala... | | -------- | -------------- | | A header | Another header | | First | row | | Second | row |
etc...
What I want:
dataset 1:
| A header | Another header |
|---|---|
| First | row |
| Second | row |
dataset 2:
| A header | Another header |
|---|---|
| First | row |
| Second | row |
dataset 3:
| A header | Another header |
|---|---|
| First | row |
| Second | row |
etc...