Description Usage Arguments Value Examples
Fuzzysearch is a searching function for a string or a list of string
within the encode_df data.table
. For faster processing, pass encode_df
object as database parameter.
1 2 3 4 5 6 7 | fuzzySearch(
searchTerm = NULL,
database = get_encode_df(),
filterVector = NULL,
multipleTerm = FALSE,
ignore_case = TRUE
)
|
searchTerm |
The keyword or a |
database |
A |
filterVector |
A |
multipleTerm |
A boolean that indicate if the searchTerm is a list or even multiple searchTerm separete by a comma in a single string. |
ignore_case |
A |
A data.table
corresponding the every row of the database that
contain at least of one the searchTerm.
1 2 3 |
fuzz_ex <- fuzzySearch(searchTerm=c("ELAVL1","atf7"),
database=get_encode_df_demo(), filterVector ="target", multipleTerm = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.