#' @title Print numbers from 1 to 10
#' @description this function will print 'Number:' then each of the numbers between 1 and 10
PrintNumbers <- function() {
for (i in 1:10) {
pander(print(paste('Number:', i)))
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.