#' Log (base 10) of a vector.
#'
#' This function takes the log (base 10) of a vector.
#'
#' @param x The vector to log_10.
#'
#' @return A vector that is the exponent to raise 10 to get the power, x \code{x}.
#'
#' @details
#' Logarithmic functions are the inverses of exponential functions.
#'
#'
#'
#'
#' @examples
#' log_10(1:10)
#' log_10(-5)
#' @export
#'
log_10 <- function(x) log10(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.