打印Pandas 系列的标准偏差
在此程序中,我们将找到熊猫系列的标准差。标准差是一种统计数据,用于衡量数据集相对于其均值的离散度,并计算为方差的平方根。
算法
Step 1: Define a Pandas series Step 2: Calculate the standard deviation of the series using the std() function in the pandas library. Step 3: Print the standard deviation.
范例程式码
import pandas as pd
series = pd.Series([10,20,30,40,50])
print("Series: \n", series)
series_std = series.std()
print("系列的标准偏差: ",series.std())输出结果Series: 0 10 1 20 2 30 3 40 4 50 dtype: int64 系列的标准偏差: 15.811388300841896
热门推荐
6 保研的祝福语简短
10 年轻20岁祝福语简短
11 朋友结婚祝福语信息简短
12 女孩婚礼贺卡祝福语简短
13 30段点歌简短祝福语
14 虎年春节祝福语图文简短
15 写给后妈祝福语大全简短
16 简短回复生日祝福语
17 校长送毕业祝福语简短
18 毕业立体贺卡祝福语简短