Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

พิมพ์ค่าเบี่ยงเบนมาตรฐานของชุดหมีแพนด้า


ในโปรแกรมนี้ เราจะหาค่าเบี่ยงเบนมาตรฐานของชุด 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("Standard Deviation of the series: ",series.std())

ผลลัพธ์

Series:
0    10
1    20
2    30
3    40
4    50
dtype: int64
Standard Deviation of the series:  15.811388300841896