python-scipyHow do I use Python Scipy to generate an exponential distribution?
Scipy is a powerful python library for scientific computing. It provides a wide range of functions for generating and manipulating probability distributions. To generate an exponential distribution using Scipy, the scipy.stats.expon
function can be used.
Example code
import scipy.stats
x = scipy.stats.expon.rvs(size=10)
print(x)
Example output:
[1.97790379 0.96668961 0.37204524 0.18509819 0.14698962 1.78867799
0.73548481 0.30222099 0.73564717 0.61254917]
Code explanation
import scipy.stats
: imports thescipy.stats
modulescipy.stats.expon.rvs(size=10)
: generates 10 random variables from an exponential distributionprint(x)
: prints the generated random variables
Helpful links
More of Python Scipy
- How do I use Python Scipy to perform a Z test?
- How do I use the numpy vstack function in Python?
- How do I troubleshoot a Python Scipy subprocess that exited with an error?
- How do I use scipy.optimize.curve_fit in Python?
- How can I use Python Scipy to zoom in on an image?
- How do I create a 2D array of zeros using Python and NumPy?
- How can I use Python and SciPy to find the zeros of a function?
- How do I use Python Numpy to read and write Excel (.xlsx) files?
- How can I use Python and SciPy together online?
- How do I use Python and SciPy to write a WAV file?
See more codes...