You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using this structure would allow you to get both options in one function.
sterm <- function(dat, ..., freq = T){
if (freq){
dat %>%
search_term(.,unlist(colo(...))) %>% # possibly don't need the unlist once other issue fixed
frequent_terms()
} else {
dat %>%
search_term(.,unlist(colo(...)))
}
}
The text was updated successfully, but these errors were encountered:
using this structure would allow you to get both options in one function.
The text was updated successfully, but these errors were encountered: