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