Nothing
selectnhighest <-
function(dif, inputter, nlim) {
rnk <- rank(dif)
if (length(nlim) > length(inputter)) {
stop(paste("cannot rake on", nlim, "variables. Too few targets specified"))
}
found <- inputter[rnk <= nlim]
found
}
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.