#' convert vector to proportions
#'
#' \code{propz(x)}
#'
#' @param x a vector of values
#'
#' @details converts values in a vector to proportions of the whole
#'
#' @examples
#' propz(1:3)
propz = function(x) x/sum(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.