#'@title breaks
#'
#'@description This funtion provides breaks for a density estimator
#'
#' @param x data vector
#' @param nbr number of breaks for an estimator
#'
#' @return a breaks
mybreaks = function(x = rnorm(100),nbr)
{
mx = min(x)
Mx = max(x)
seq(mx,Mx, (Mx-mx)/nbr)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.