标签: python pandas
https://i.stack.imgur.com/MxrO1.jpg
我想计算产品1-15的标准偏差
首先,我需要计算每种产品的平均重量 所以我用
Weight 1 = df["Weight 1"] Weight 2 = df["Weight 2"] Ave = (Weight 1[0] + Weight 2[0])/2
但这只允许我做1行,如何计算所有产品的平均重量?
因为获得所有产品的平均重量后,我想计算平均重量的标准偏差。
谢谢