kwr_removed_queries | R Documentation |
Outputs queries removed by kwr_prune
kwr_removed_queries(kwr, q = NULL)
kwr |
A |
q |
An optional regular expression to filter the output queries. |
A tibble with queries removed by kwr_prune
.
queries <- data.frame( query = c("seo", "keyword research", "nonsense"), volume = c(1000, 500, 10) ) kwr <- kwresearch(queries) recipe_file <- file.path(tempdir(), "my-recipes.yml") kwr_add_pattern( pattern = "nonsense", recipe_file = recipe_file, recipe_type = "remove" ) kwr <- kwr_prune(kwr, recipe_file) kwr_removed_queries(kwr) file.remove(recipe_file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.