码迷,mamicode.com
首页 > 其他好文 > 详细

求和,求平均,统计导引

时间:2019-06-20 21:15:28      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:end   excel   average   temp   sum   nts   row   xlsx   pen   

import pandas as pd
students = pd.read_excel(‘D:/Temp/Students.xlsx‘,index_col=‘ID‘)
temp = students[[‘Test_1‘,‘Test_2‘,‘Test_3‘]]
row_sum = temp.sum(axis=1)
row_mean = temp.mean(axis=1)
students[‘Total‘] = row_sum
students[‘Average‘] = row_mean

col_mean=students[[‘Test_1‘,‘Test_2‘,‘Test_3‘,‘Total‘,‘Average‘]].mean() #python没有Aver 只有mean
col_mean[‘Name‘]=‘Sumary‘
students = students.append(col_mean,ignore_index = True) #忽略索引

print(students)

求和,求平均,统计导引

标签:end   excel   average   temp   sum   nts   row   xlsx   pen   

原文地址:https://www.cnblogs.com/inserence/p/11061327.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!