kwr_unclassified_queries | R Documentation |
List queries that are not classified in all or specified dimensions
kwr_unclassified_queries(kwr, label = NULL, q = NULL)
kwr |
A |
label |
An optional dimension names as a character vector. If specified, classification in only those dimensions is considered. |
q |
An optional regular expression to filter the output queries. |
A tibble with queries.
queries <- data.frame( query = c("seo", "keyword research"), volume = c(1000, 500) ) kwr <- kwresearch(queries) recipe_file <- file.path(tempdir(), "my-recipes.yml") kwr_add_pattern( pattern = "seo", recipe_file = recipe_file, recipe_type = "label", dim_name = "my_label" ) kwr <- kwr_classify(kwr, recipe_file) kwr_unclassified_queries(kwr) file.remove(recipe_file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.