इस कार्यक्रम में, हम पंडों की एक श्रृंखला का मानक विचलन पाएंगे। मानक विचलन एक ऐसा आँकड़ा है जो किसी डेटासेट के फैलाव को उसके माध्य के सापेक्ष मापता है और इसकी गणना विचरण के वर्गमूल के रूप में की जाती है।
एल्गोरिदम
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