Description Usage Arguments Value Examples
This function scrapes Naver Trends and returns the results nicely formatted into a R object
1 | naver_trends(query)
|
query |
The keyword to be searched. It will be auto escaped. This can be a vector with up to 5 queries |
The output is a dataframe containing Date and Value variables for all the queries
1 2 3 4 5 | #Search the keyword 'tokyo and japan'
results = naver_trends(c("tokyo", "japan"))
#Visualize results
ggplot(results, aes(x = Date, y = Value, col = Query)) + geom_line()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.