df_search | R Documentation |
Search and highlight occurences of a pattern in a data frame
df_search(x, pattern = NULL, cols = NULL)
x |
a data frame |
pattern |
a pattern; if NULL, the search results will be removed |
cols |
which columns to search for (if NULL, all columns will be searched) |
df_search is for highlighting cells matching a specific pattern.
a color data frame object with the search pattern set for the given columns (or reset, if the pattern was NULL)
options(colorDF_tibble_style=TRUE) if(require(dplyr)) { # Search for "blue" in any column starwars %>% df_search("blue") # Search in a specific column starwars %>% df_search("(Human|Wookie)", "species") # save the search pattern in a new object saved <- starwars %>% df_search("blue") # remove the search patterns saved <- df_search(saved) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.