Hi all,
I have a dataframe that looks like this:
test
a b c d e f g
1 27 56 87 32 0 5 6
2 0 0 20 21 12 5 6
I would like to sum the column data to create a new row, like this:
test1
a b c d e f g
1 27 56 87 32 0 5 6
2 0 0 20 21 12 5 6
12 27 56 107 53 12 10 12
This seems like it should be really easy to do, but can't seem to figure it out. That or I am using the wrong search syntax to do a search for this topic. Any help greatly appreciated.
Cheers,
bugstatsguy