The original dataframe I have doesn't specify what those values are. Now I want to add a extra on top and add category to each column like below:
Original has only two row and no category names:
blank | blank |
---|---|
1 | 34 |
2 | 22 |
I want to transform it like this:
Habitat | Count of birds |
---|---|
1 | 34 |
2 | 22 |
How do I do this?
I found several functions on Google, but the don't really match with my needs.