i have data frame as follows and i wanna make a row sum new dataframe and a,b,c,d column values is string.
name a b c d
aa. 10,000 1,000 1,000 1,000
bb. 10,000 1,000 1,000 1,000
cc. 10,000 1,000 1,000 1,000
dd. 10,000 1,000 1,000 1,000
ee. 10,000 1,000 1,000 1,000
ff. 10,000 1,000 1,000 1,000
gg. 10,000 1,000 1,000 1,000
for example, new row sum dataframe should as belows
sum 70,000 70,000 70,000 70,000
i tried using df.sumO() but got a object type. but i need is dataframe like sum 70,000 70,000 70,000 70,000
so i question to here. thank you in advance !