#' Wait a Given Number of Seconds
#'
#' @param seconds time to wait, in seconds
#' @export
#' @return list with elements \code{data}, \code{success}, \code{message}
sleep <- function(seconds)
{
Sys.sleep(seconds)
create_result(message = paste("Back after waiting for", seconds, "seconds"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.