
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Calculate Standard Deviation in Pandas
In this program, we will find the standard deviation of a Pandas series. Standard deviation is a statistic that measures the dispersion of a dataset relative to its mean and is calculated as the square root of the variance.
Algorithm
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.
Example Code
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())
Output
Series: 0 10 1 20 2 30 3 40 4 50 dtype: int64 Standard Deviation of the series: 15.811388300841896
Advertisements