我想知道一列中每一行的总和除以该列的总和,并以百分比表示。
我为total做了一个新行,如df5.loc ['Total'] = pd.Series(df5 ['Bounce Value'].sum(),index =['Bounce Value'])
I want it like the last column I currently have only the first3 columns.
我想知道一列中每一行的总和除以该列的总和,并以百分比表示。
我为total做了一个新行,如df5.loc ['Total'] = pd.Series(df5 ['Bounce Value'].sum(),index =['Bounce Value'])
I want it like the last column I currently have only the first3 columns.
1条答案
按热度按时间khbbv19g1#
用
sum
乘列,然后除以100
并四舍五入: