python-scipyHow do I calculate the mode using Python Scipy Stats?
The mode
of a dataset is the most frequently occurring value in the dataset. We can use the mode
function from the scipy.stats
module to calculate the mode of a dataset in Python.
Example code
from scipy.stats import mode
# Create a dataset
data = [1, 1, 2, 3, 3, 3, 4, 5, 5]
# Calculate the mode
mode(data)
Output example
ModeResult(mode=array([3]), count=array([3]))
The mode
function returns a ModeResult
object which contains two properties:
mode
: an array containing the most frequent value in the datasetcount
: an array containing the number of occurrences of the most frequent value
In the example above, the mode of the dataset is 3
, which appears 3
times.
Helpful links
More of Python Scipy
- How can I check if a certain version of Python is compatible with SciPy?
- How do I use Python Numpy to read and write Excel (.xlsx) files?
- How do I create a 2D array of zeros using Python and NumPy?
- How do I use Python Scipy to perform a Z test?
- How do I check the version of Python Scipy I am using?
- How do I uninstall Python Scipy?
- How do I update Python SciPy?
- How do I use the NumPy transpose function in Python?
- How do I use the scipy ttest_ind function in Python?
- How do I upgrade my Python Scipy package?
See more codes...