kwresearch | R Documentation |
An object of the kwresearch class is a home to your keyword research. You can import datasets into it, research queries, classify them and export the final keyword analysis.
kwresearch(queries = NULL, accentize = TRUE, normalize = TRUE)
queries |
Queries to import as a data frame with at least two columns:
query (string) and volume (numeric). Optionally the data
frame can contain three additional columns: cpc (double),
input (char) and source (char). If you don't provide this
argument, you can import queries later with |
accentize |
The import functions tries to add correct accents (diacritic marks) to queries without them. |
normalize |
The import functions tries to unite queries, which differ only by order of words. |
An object of the kwresearch class.
# create an empty object kwr <- kwresearch() # create an object and import queries queries <- data.frame( query = c("seo", "keyword research"), volume = c(1000, 500) ) kwr <- kwresearch(queries)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.