R/ussc_google_search.R
ussc_google_create_custom_query.RdDefines the query needed for Google Search to grab the right data.
ussc_google_create_custom_query()
| .data | The data frame containing the strings you want to turn into a query. |
|---|---|
| ... | A list of columns to convert -- this can just be one column. |
df <- tibble::tribble(~name, ~place, "Simon Jackman", "USSC") ussc::ussc_google_create_custom_query(data = df, "name", "place")#> # A tibble: 1 x 3 #> custom_query name place #> <chr> <chr> <chr> #> 1 %22Simon+Jackman%22+%22USSC%22 Simon Jackman USSC