Nothing
#' Horner's method to evaluate a polynomial, copied from the polynom package. the most efficient way
#' @param coefs the polynomial coefficients
#' @param x the input values for the polynomial function
#'
#' @return the evaluated polynomial
polyHorner = function(coefs, x){
out = 0
for(coefj in coefs) out = x*out + coefj
out
}
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.