NumPy is a linear algebra library for Python. It allows us to work with numeric data. Numeric data can be created and stored in a data structure called a NumPy array.
NumPy has various functions to perform calculations on arrays of numeric data. One of these is the median()
function.
numpy.median()
functionThe function numpy. median()
returns the median of a NumPy array.
numpy.median(
arr,
axis=None,
out=None,
overwrite_input=False,
keepdims=False
)
arr
: This represents the input array.axis
: This represents the axis on which we want to calculate the median. If the axis is 0
, the direction is down the rows. If it is 1
, the direction is down the columns.out
: This is an optional parameter that saves the NumPy result.
The default value for the median()
function is none
.keepdims
: This argument specifies the input array’s dimension. If the value is ‘True’, the decreased axes are retained in the output.The following code shows how to use the numpy.median()
function in Python:
# import numpyimport numpy as np# create a listmy_list = [24,8,3,4,86,42,56,34,8]# convert the list to the numpy arraynp_list = np.array(my_list)# compute the median and store itnp_list_median = np.median(np_list)print(f"The median is {np_list_median}")
numpy
library.my_list
.np_list
.np.median()
and compute the median for the np_list
.