Trying to read excel table that looks like this:
| B | C | |
|---|---|---|
| A | data | data |
| data | data | data |
but read excel doesn't recognizes that one column doesn't start from first row and it reads like this:
| Unnamed : 0 | B | C |
|---|---|---|
| A | data | data |
| data | data | data |
Is there a way to read data like i need? I have checked parameters like header = but thats not what i need.