- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to plot gamma distribution with alpha and beta parameters in Python using Matplotlib?
To plot gamma distribution with alpha and beta parameters in Python, we can use gamma.pdf() function.
Steps
Set the figure size and adjust the padding between and around the subplots.
Create x using numpy and y using gamma.pdf() function at x of the given RV.
Plot x and y data points using plot() method.
Use legend() method to place the legend elements for the plot.
To display the figure, use show() method.
Example
import numpy as np import scipy.stats as stats from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(0, 10, 10) y = stats.gamma.pdf(x, a=5, scale=0.333) plt.plot(x, y, "ro-", label=(r'$\alpha=0, \beta=3$')) plt.legend(loc='upper right') plt.show()
Output
- Related Articles
- Difference Between Alpha, Beta, Gamma, and Delta Variants in Coronavirus
- Given that: ( (1+cos alpha)(1+cos beta)(1+cos gamma)=(1-cos alpha)(1-cos beta)(1-cos gamma) )Show that one of the values of each member of this equality is ( sin alpha sin beta sin gamma )
- Controlling the alpha value on a 3D scatter plot using Python and Matplotlib
- Relation between Beta and Gamma Function
- If $alpha+beta=-2$ and $alpha^3+beta^3=-56$, then find the quadratic equation whose roots are $alpha$ and $beta$.
- If ( cos (alpha+beta)=0 ), then ( sin (alpha-beta) ) can be reduced to(A) ( cos beta )(B) ( cos 2 beta )(C) ( sin alpha )(D) ( sin 2 alpha )
- If $alpha$ and $beta$ are the zeroes of a polynomial such that $alpha+beta=-6$ and $alphabeta=5$, then find the polynomial.
- How to plot MFCC in Python using Matplotlib?
- How to plot vectors in Python using Matplotlib?
- If $alpha , beta$ are the zeroes of a polynomial, such that $alpha+beta=6$ and $alphabeta=4$, then write the polynomial.
- How to plot CSV data using Matplotlib and Pandas in Python?
- Difference between Alpha and Beta Testing
- If $alpha, beta$ are the zeroes of $f( x)=px^2-2x+3p$ and $alpha +beta=alphabeta$, then find the value of $p$.
- If $alpha$ and $beta$ are zeroes of $x^2-4x+1$, then find the value of $frac{1}{alpha}+frac{1}{beta}-alphabeta$.
- How to plot an array in Python using Matplotlib?

Advertisements