I'm still relatively new to R and I'm confused on how I'm supposed to plot gamma My data is distributed ~ Gamma(1000,20)
so my code looks like
curve(dgamma(x, shape = 1000 , scale = 20, log = FALSE))
This results in a straight line being plot. I am pretty sure it has to do with my value of shape being so high. But the only reason it is 1000 is because I thought shape is a paramter equivalent to alpha (so 1000). Am I wrong? Does shape equal something else? Or is my issue somewhere else?
Thank you!