Search and highlight occurences of a pattern in a data frame
df_search(x, pattern = NULL, cols = NULL)
a data frame
a pattern; if NULL, the search results will be removed
which columns to search for (if NULL, all columns will be searched)
a color data frame object with the search pattern set for the given columns (or reset, if the pattern was NULL)
df_search is for highlighting cells matching a specific pattern.
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)
}
#> Loading required package: dplyr
#>
#> Attaching package: ‘dplyr’
#> The following objects are masked from ‘package:stats’:
#>
#> filter, lag
#> The following objects are masked from ‘package:base’:
#>
#> intersect, setdiff, setequal, union