Nothing
      ## File Name: NMIextract.R
## File Version: 0.07
NMIextract <- function(results, expr, fun)
{
    pf <- parent.frame()
    results0 <- results
    if (!is.null(match.call()$expr)){
        expr <- substitute(expr)
        lapply( results0, FUN=function(results){
            lapply(results, function(result) eval(expr, result,pf))
                            } )
    } else {
        lapply( results0, FUN=function( results){
                lapply(results, fun)
                            } )
    }
}
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.