#' CPU Core Detection
#'
#' The \code{tie_cores} detects the number of available CPUs for parallel computing. Don't overdo it!
#'
#' @importFrom parallel detectCores
#'
#' @return No of CPUs on your machine
#'
#' @export
tie_cores <- function(){
return(detectCores())
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.