Nothing
#' Beta distribution declaration
#'
#' Skeleton list to declare a Beta distribution in a `Model` object
#'
#' @param link Name of link function. Only accepts `logit` currently.
#' @return A list with two elements naming the family and link function
#' @export
Beta <- function(link="logit"){
if(link != "logit")stop("Only logit currently supported for Beta distribution")
return(list(Family = "beta", Link= link))
}
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.