If I have a following dataframe:
A B C D E
1 1 2 0 1 0
2 0 0 0 1 -1
3 1 1 3 -5 2
4 -3 4 2 6 0
5 2 4 1 9 -1
6 1 2 2 4 1
How can i add a row end of the dataframe with all values "0 (Zero)"?
Desired Output is;
A B C D E
1 1 2 0 1 0
2 0 0 0 1 -1
3 1 1 3 -5 2
4 -3 4 2 6 0
5 2 4 1 9 -1
6 1 2 2 4 1
7 0 0 0 0 0
Could you please help me about this?