#' simulation_summary
#'
#' @param t a vector of run times
#'
#'@return mean of t
#'@return standard deviation of t
#'
#'
#'@import stats
#'
#'@export
simulation_summary = function(t){
return(c(mean(t), sd(t)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.