Nothing
#' na_predict
#'
#' replace `NA` values by predictions of a model
#'
#' @param x data
#' @param object object with predict method
#' @param data data object
#'
#' @export
na_predict <- function( x, object, data=x ) {
if( length(x) != nrow(data) ) stop()
return(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.