Skip to content
Prev 336598 / 398513 Next

How to plot a shifted Gamma distribution

It is not hard to write your own function:

dsgamma <- function(x, x0=0, ...) {
  dgamma(x-x0,...)
}

and similar for the other functions.

You might also want to look at ?curve for plotting (your plotting is
fine, curve is just another option).

On Thu, Feb 13, 2014 at 8:30 AM, Rodrigo Cesar Silva
<rodrigocesar.jo at gmail.com> wrote: