#' @title Convert radians to degrees.
#'
#' @description This function converts radians to degrees. It is commonly needed in code that we use to graph circles.
#' @param rad Input the radian that is to be converted into degrees.
#' @export
rad2deg <-
function(rad) {
(rad * 180) / (pi)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.