Nothing
      #' epane
#' to be documented
#' @usage epane(d,h)
#' @param d a vector of distances
#' @param h a scalar or vector of bandiwdths (lenght(h)=1 or length(h)=length(d))
#' @noRd
#' @return a vector of weights.
epane <-function(d,h) {              #epanechnikov kernel
  x<-abs(d)/h
  x[x< 1]<- 3/4*(1-(x[x< 1])^2)
  x[x>= 1]<- 0
  x
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.