R/ggamma.R

Defines functions ggamma

Documented in ggamma

ggamma <- function(shape)
{
  if (is.numeric(shape) == TRUE)
  {
    output <- vector(length = length(shape))
    pos.NA <- shape<=0
    output[pos.NA] <- NA
    output[!pos.NA] <- gamma((2*shape[!pos.NA] + 1)/2)/(shape[!pos.NA]*gamma(shape[!pos.NA])*sqrt(pi))
    sum.NA <- sum(pos.NA)
    if (sum.NA == 1L)
    {
      warning("an element of the object 'shape' is not positive")
    }
    else if (sum.NA >= 1L)
    {
      warning(paste(sum.NA, " elements of the object 'shape' are not positive"))
    }
  }
  else
  {
    output <- NA
    warning("object 'shape' must be numeric")
  }
  return(output)
}

Try the giniVarCI package in your browser

Any scripts or data that you put into this service are public.

giniVarCI documentation built on May 29, 2024, 3:36 a.m.