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.
Arguments
- 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
kwr_import
orkwr_import_mm
.- 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.
Examples
# 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)