Nothing
grepFn <- function(pattern, x, column='Function',
ignore.case=FALSE, perl=FALSE,
value=TRUE, fixed=FALSE, useBytes=FALSE, invert=FALSE) {
##
## 1. grep
##
g <- grep(pattern, x[, column], ignore.case=ignore.case,
perl=perl, value=FALSE, fixed=fixed,
useBytes=useBytes, invert=invert)
##
## 2. value?
##
{
if(value)return(x[g, , drop=FALSE]) else return(g)
}
}
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.