I have a df as such:
column A column B column C .... ColumnZ
index
X 1 4 7 10
Y 2 5 8 11
Z 3 6 9 12
For the life on me I can't figure out how to sum rows for each column, to arrive at a summation df:
column A column B column C .... ColumnZ
index
total 6 16 25 33
Any thoughts?