I have a population dataframe. How to plot a gamma distribution diagram?
I am using python and I can plot a diagram using seaborn or plot bar. But I need a gamma distribution diagram. I dont know how to fit my parameters into gamma functions.
plot = sns.distplot(df["Percent"])
fig = plot.get_figure()
plot2 = rows['state'].value_counts().plot.bar()
fig2 = plot2.get_figure()
It only shows me two general diagrams. Not sure how to get gamma distribution.