Nothing
predict.pspline.face <- function(object,argvals.new,...){
#require(splines)
stopifnot(class(object)=="pspline.face")
knots <- object$knots
p <- object$p
B = spline.des(knots=knots, x = argvals.new, ord = p+1,outer.ok = TRUE,sparse=TRUE)$design
return(as.vector(B%*%object$theta))
}
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.