search_raw | R Documentation |
Searches through the list of supplied for matching strings of text. Useful in finding files that you know contain certain text snippets.
search_raw(files, text, search_title = TRUE, search_contents = TRUE)
files |
Vector string of files (either names or paths). |
text |
String (can be regex) to search for. |
search_title |
Logical (default= |
search_contents |
Logical (default= |
A subset of files
with contents matching text
.
ls_scripts()
, ls_code_library()
, stage()
ls_scripts("Scripts") %>% search_raw("AUC") ## finds all scripts containing string "AUC"
## regex match find instances of AUC() function being used
ls_scripts("Scripts") %>% search_raw("AUC\\(")
## requires NMproject directory structure to operate in
## Not run:
## bring file(s) into project
ls_scripts("/path/to/other/analysis/scripts/dir") %>%
search_raw("AUC\\(") %>%
import()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.