Nothing
      # FUNCTION:  KERNEL EPANECHNIKOV
Epanechnikov <- function(u)
{ 
  1 - (u)^2
}
# FUNCTION:  KERNEL EPANECHNIKOV
quadratic <- function(u)
{ 
  1 - (u)^2
}
# FUNCTION:  GAUSSIAN KERNEL
gaussian <- function(u)
{ 
  (1/sqrt(2*pi))*exp((-1/2)*u^2)
}
# FUNCTION:  UNIFORM KERNEL
uniform <- function(u)
{ 
  num_row <- nrow(u)
  unif <- function(a) {
    if ((a < 1) & (a > -1)) 1
    else 0
  }
  matrix(sapply(u, unif), nrow=num_row)
}
# FUNCTION:  TRIWEIGHT KERNEL
triweight <- function(u)
{ 
  (1 - (u)^2)^3
}
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.