kwr_prune_long_queries | R Documentation |
Very long queries tend to be too specific and you may want to exclude them from the analysis. That's what this function is for.
kwr_prune_long_queries(kwr, longer_than = 60)
kwr |
A |
longer_than |
A number. |
A kwresearch object with pruned data and status = 'pruned'.
kwr_long_queries
queries <- data.frame( query = c( "seo", "this is a very long query made up of 67 characters including spaces" ), volume = c(1000, 5) ) kwr <- kwresearch(queries) kwr_long_queries(kwr, longer_than = 65) kwr <- kwr_prune_long_queries(kwr, longer_than = 65)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.