Posted in Python onAugust 22, 2019
首先是数据源:
#需要求加权平均值的数据列表 elements = [] #对应的权值列表 weights = []
使用numpy直接求:
import numpy as np np.average(elements, weights=weights)
附纯python写法:
# 不使用numpy写法1 round(sum([elements[i]*weights[i] for i in range(n)])/sum(weights), 1) # 不使用numpy写法2 round(sum([j[0]*j[1] for j in zip(elements, weights)])/sum(weights), 1)
以上这篇python求加权平均值的实例(附纯python写法)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
python求加权平均值的实例(附纯python写法)
- Author -
斑点鱼声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@