Nothing
#' Convert degrees to radians
#'
#' @description Convert degrees to radians.
#'
#' @param deg Degree value to convert.
#'
#' @return Value in radians.
#' @export
#'
#' @examples # Convert 90 degrees into radians
#' degree_conversion(90)
degree_conversion <- function(deg) {
checkmate::check_numeric(deg)
(deg * pi) / (180)
}
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.