#' Myx
#'
#' @description Adds 1 to x. Just to have a function.
#' @param x A number.
#'
#' @return value of x + 1
#' @export
#'
#' @examples
#' \dontrun{
#' }
myx <- function(x){
res <- x+1
return(res)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.