Download suggested queries based on your input generated by Google Suggest API.
Google Suggest Query API is a tool for extracting keyword suggestions from Google.
For more, see the NEWS.md
# CRAN version is is not yet available - to be announced
# GitHub version:
install.packages("devtools")
devtools::install_github("Leszek-Sieminski/googleSuggestQueriesR")
library(googleSuggestQueriesR)
# there is no authentication with the API
# this can take some time due to the number of variations, please be patient
keyword_suggestions <- googleSuggestQueriesR::suggest_keywords(
queries = "mtcars",
lang = "en",
interval = 1)
head(keyword_suggestions)
# [1] "mtcars c(1 2)" "mtcars am" "mtcars analysis" "mtcars analysis in r" "mtcars anova" "mtcars analysis using r"
str(keyword_suggestions)
# chr [1:196] "mtcars c(1 2)" "mtcars am" "mtcars analysis" "mtcars analysis in r" "mtcars anova" "mtcars analysis using r" ...
For more advanced examples and description of using the helper functions to narrow down the recommendations, read this article.
Please report them here.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.