Nothing
      #### Plot the gamma distribution with the chosen parameters
pltgamma <- function (a, b) {
    x <- seq(0,20,000.1)
    y <- x ^ (a - 1) * exp((-x/b)) / ((b ^ a) * gamma(a)) 
    plot (x, y, type="s")
    }
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.