#' @title myclt
#'
#' @param n
#' @param iter
#'
#' @return
#' @export
#'
#' @examples
#'
#'
#'
myclt=function(n,iter){
y=runif(n*iter,0,5)
data=matrix(y,nr=n,nc=iter,byrow=TRUE)
sm=apply(data,2,sum)
hist(sm)
sm
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.