Skip to content
Snippets Groups Projects
sample_gamma.Rd 561 B
Newer Older
thierrychambert's avatar
thierrychambert committed
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/sample_gamma.R
\name{sample_gamma}
\alias{sample_gamma}
\title{Draw values from a Custom Gamma Distribution using lower and upper limits}
thierrychambert's avatar
thierrychambert committed
\usage{
sample_gamma(n, lower, upper, coverage = 0.95)
thierrychambert's avatar
thierrychambert committed
}
\arguments{
\item{n}{number of value to draw.}

thierrychambert's avatar
thierrychambert committed

thierrychambert's avatar
thierrychambert committed
}
\value{
a vector of drawn values.
}
\description{
Draw values from a Custom Gamma Distribution using lower and upper limits
thierrychambert's avatar
thierrychambert committed
}
\examples{
sample_gamma(n = 50, lower = 10, upper = 30)
thierrychambert's avatar
thierrychambert committed

}