The Numpy library in Python comes with a number of useful built-in functions for computing common descriptive statistics like mean, median, standard deviation, etc. In this tutorial, we will look at how to get the standard deviation of a Numpy array with the help of some examples.
How do you get the standard deviation of an array in Numpy?
You can use the Numpy std()
function to get the standard deviation of the values in a Numpy array. Pass the array as an argument.
The following is the syntax –
# standard deviation of all values in array numpy.std(ar)
It returns the standard deviation taking into account all the values in the array. For multi-dimensional arrays, you can specify the axis along which you want to compute the standard deviation (see the examples below).
Examples
Let’s now look at some examples of using the above syntax on single and multi-dimensional arrays.
Example 1 – Standard deviation of a one-dimensional Numpy array
Let’s first create a one-dimensional Numpy array.
import numpy as np # create numpy array ar = np.array([1, 2, 3, 4]) # display the array print(ar)
Output:
[1 2 3 4]
Here, we used the numpy.array()
function to create a one-dimensional array containing some numeric values.
Introductory ⭐
- Harvard University Data Science: Learn R Basics for Data Science
- Standford University Data Science: Introduction to Machine Learning
- UC Davis Data Science: Learn SQL Basics for Data Science
- IBM Data Science: Professional Certificate in Data Science
- IBM Data Analysis: Professional Certificate in Data Analytics
- Google Data Analysis: Professional Certificate in Data Analytics
- IBM Data Science: Professional Certificate in Python Data Science
- IBM Data Engineering Fundamentals: Python Basics for Data Science
Intermediate ⭐⭐⭐
- Harvard University Learning Python for Data Science: Introduction to Data Science with Python
- Harvard University Computer Science Courses: Using Python for Research
- IBM Python Data Science: Visualizing Data with Python
- DeepLearning.AI Data Science and Machine Learning: Deep Learning Specialization
Advanced ⭐⭐⭐⭐⭐
- UC San Diego Data Science: Python for Data Science
- UC San Diego Data Science: Probability and Statistics in Data Science using Python
- Google Data Analysis: Professional Certificate in Advanced Data Analytics
- MIT Statistics and Data Science: Machine Learning with Python - from Linear Models to Deep Learning
- MIT Statistics and Data Science: MicroMasters® Program in Statistics and Data Science
🔎 Find Data Science Programs 👨💻 111,889 already enrolled
Disclaimer: Data Science Parichay is reader supported. When you purchase a course through a link on this site, we may earn a small commission at no additional cost to you. Earned commissions help support this website and its team of writers.
Let’s now get the standard deviation of all the values in the above array.
# std dev of array print(np.std(ar))
Output:
1.118033988749895
We get the standard deviation as approximately 1.118
Example 2 – Standard deviation of multi-dimensional Numpy array
First, let’s create a 2-D Numpy array.
# create 2-D numpy array ar = np.array([[1, 2, 3], [2, 1, 1]]) # display the array print(ar)
Output:
[[1 2 3] [2 1 1]]
Here, we used the numpy.array()
function to create a Numpy array with two rows and three columns.
If you use the Numpy std()
function on an array without specifying the axis, it will return the standard deviation taking into account all the values inside the array.
# std dev of array print(np.std(ar))
Output:
0.7453559924999299
We get the standard deviation of all the values inside the 2-D array.
Use the numpy.std()
function with axis=1
to get the standard deviation for each row in the array.
# std dev of each row in array print(np.std(ar, axis=1))
Output:
[0.81649658 0.47140452]
We get the standard deviation of each row in the above 2-D array. The standard deviation of the values in the first row (1, 2, 3) is 0.816 and the standard deviation of the values in the second row (2, 1, 1) is 0.471.
Use the numpy.std()
function with axis=0
to get the standard deviation of each column in the array.
# std dev of each column in array print(np.std(ar, axis=0))
Output:
[0.5 0.5 1. ]
We get the standard deviation of each column in the above 2-D array. The standard deviation of the values – in the first column (1, 2) is 0.5, in the second column (2, 1) is 0.5, and in the third column (3, 1) is 1.
Summary
In this tutorial, we looked at how to use the numpy.std()
function to get the standard deviation of values in an array. The following are the key takeaways from this tutorial.
- Use the
numpy.std()
function without any arguments to get the standard deviation of all the values inside the array. - For multi-dimensional arrays, use the
axis
parameter to specify the axis along which to compute the standard deviation. For example, for a 2-D array –- Pass
axis=1
to get the standard deviation of each row. - Pass
axis=0
to get the standard deviation of each column.
- Pass
You might also be interested in –
- Numpy – Get Max Value in Array
- Get the Mean of NumPy Array – (With Examples)
- Python – Find Average of values in a List
Subscribe to our newsletter for more informative guides and tutorials.
We do not spam and you can opt out any time.