#' @title Degrees
#' @description Converts from radians to degrees.
#' @param x Angle in radians
#' @export
#' @return Angle in degrees
#' @examples
#' degs(0.7854)
#'
degs <- function (x){
x * 180 / pi
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.