Defines the query needed for Google Search to grab the right data.

ussc_google_create_custom_query()

Arguments

.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.

Examples

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