Let’s learn how to pull data from Google Trends in R, using a package called gtrendsR.
Refer to Google Trends data analysis in R
1. First, let’s pull trends data for keywords “オリンピック” from the last 12 months and for searches made in Japan.
# import libraries
library(gtrendsR)
library(tidyverse)
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.0 ──
## ✓ ggplot2 3.3.3 ✓ purrr 0.3.4
## ✓ tibble 3.0.4 ✓ dplyr 1.0.5
## ✓ tidyr 1.1.2 ✓ stringr 1.4.0
## ✓ readr 1.4.0 ✓ forcats 0.5.0
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## x dplyr::filter() masks stats::filter()
## x dplyr::lag() masks stats::lag()
library(ggrepel)
gtrends(keyword = c("オリンピック"),time="today 12-m", geo="JP")
## $interest_over_time
## date hits keyword geo time gprop category
## 1 2020-04-26 51 オリンピック JP today 12-m web 0
## 2 2020-05-03 54 オリンピック JP today 12-m web 0
## 3 2020-05-10 52 オリンピック JP today 12-m web 0
## 4 2020-05-17 59 オリンピック JP today 12-m web 0
## 5 2020-05-24 57 オリンピック JP today 12-m web 0
## 6 2020-05-31 47 オリンピック JP today 12-m web 0
## 7 2020-06-07 48 オリンピック JP today 12-m web 0
## 8 2020-06-14 47 オリンピック JP today 12-m web 0
## 9 2020-06-21 46 オリンピック JP today 12-m web 0
## 10 2020-06-28 48 オリンピック JP today 12-m web 0
## 11 2020-07-05 48 オリンピック JP today 12-m web 0
## 12 2020-07-12 55 オリンピック JP today 12-m web 0
## 13 2020-07-19 68 オリンピック JP today 12-m web 0
## 14 2020-07-26 59 オリンピック JP today 12-m web 0
## 15 2020-08-02 49 オリンピック JP today 12-m web 0
## 16 2020-08-09 49 オリンピック JP today 12-m web 0
## 17 2020-08-16 48 オリンピック JP today 12-m web 0
## 18 2020-08-23 51 オリンピック JP today 12-m web 0
## 19 2020-08-30 44 オリンピック JP today 12-m web 0
## 20 2020-09-06 38 オリンピック JP today 12-m web 0
## 21 2020-09-13 34 オリンピック JP today 12-m web 0
## 22 2020-09-20 38 オリンピック JP today 12-m web 0
## 23 2020-09-27 38 オリンピック JP today 12-m web 0
## 24 2020-10-04 43 オリンピック JP today 12-m web 0
## 25 2020-10-11 37 オリンピック JP today 12-m web 0
## 26 2020-10-18 47 オリンピック JP today 12-m web 0
## 27 2020-10-25 45 オリンピック JP today 12-m web 0
## 28 2020-11-01 50 オリンピック JP today 12-m web 0
## 29 2020-11-08 51 オリンピック JP today 12-m web 0
## 30 2020-11-15 57 オリンピック JP today 12-m web 0
## 31 2020-11-22 73 オリンピック JP today 12-m web 0
## 32 2020-11-29 50 オリンピック JP today 12-m web 0
## 33 2020-12-06 50 オリンピック JP today 12-m web 0
## 34 2020-12-13 46 オリンピック JP today 12-m web 0
## 35 2020-12-20 49 オリンピック JP today 12-m web 0
## 36 2020-12-27 58 オリンピック JP today 12-m web 0
## 37 2021-01-03 56 オリンピック JP today 12-m web 0
## 38 2021-01-10 59 オリンピック JP today 12-m web 0
## 39 2021-01-17 77 オリンピック JP today 12-m web 0
## 40 2021-01-24 59 オリンピック JP today 12-m web 0
## 41 2021-01-31 65 オリンピック JP today 12-m web 0
## 42 2021-02-07 97 オリンピック JP today 12-m web 0
## 43 2021-02-14 86 オリンピック JP today 12-m web 0
## 44 2021-02-21 58 オリンピック JP today 12-m web 0
## 45 2021-02-28 64 オリンピック JP today 12-m web 0
## 46 2021-03-07 57 オリンピック JP today 12-m web 0
## 47 2021-03-14 83 オリンピック JP today 12-m web 0
## 48 2021-03-21 100 オリンピック JP today 12-m web 0
## 49 2021-03-28 79 オリンピック JP today 12-m web 0
## 50 2021-04-04 94 オリンピック JP today 12-m web 0
## 51 2021-04-11 92 オリンピック JP today 12-m web 0
##
## $interest_by_country
## NULL
##
## $interest_by_region
## location hits keyword geo gprop
## 1 Tokyo 100 オリンピック JP web
## 2 Kanagawa Prefecture 91 オリンピック JP web
## 3 Chiba Prefecture 77 オリンピック JP web
## 4 Saitama Prefecture 77 オリンピック JP web
## 5 Nagano Prefecture 69 オリンピック JP web
## 6 Nara Prefecture 67 オリンピック JP web
## 7 Yamanashi Prefecture 63 オリンピック JP web
## 8 Gunma Prefecture 62 オリンピック JP web
## 9 Tochigi Prefecture 62 オリンピック JP web
## 10 Ishikawa Prefecture 62 オリンピック JP web
## 11 Toyama Prefecture 61 オリンピック JP web
## 12 Kochi Prefecture 61 オリンピック JP web
## 13 Iwate Prefecture 61 オリンピック JP web
## 14 Ehime Prefecture 61 オリンピック JP web
## 15 Ibaraki Prefecture 58 オリンピック JP web
## 16 Fukushima Prefecture 58 オリンピック JP web
## 17 Shiga Prefecture 58 オリンピック JP web
## 18 Mie Prefecture 57 オリンピック JP web
## 19 Shimane Prefecture 57 オリンピック JP web
## 20 Aichi Prefecture 57 オリンピック JP web
## 21 Miyagi Prefecture 56 オリンピック JP web
## 22 Shizuoka Prefecture 56 オリンピック JP web
## 23 Kyoto Prefecture 56 オリンピック JP web
## 24 Gifu Prefecture 55 オリンピック JP web
## 25 Yamagata Prefecture 55 オリンピック JP web
## 26 Nagasaki Prefecture 55 オリンピック JP web
## 27 Niigata Prefecture 55 オリンピック JP web
## 28 Osaka Prefecture 54 オリンピック JP web
## 29 Kagawa Prefecture 54 オリンピック JP web
## 30 Hyogo Prefecture 54 オリンピック JP web
## 31 Hokkaido Prefecture 54 オリンピック JP web
## 32 Yamaguchi Prefecture 53 オリンピック JP web
## 33 Hiroshima Prefecture 52 オリンピック JP web
## 34 Kumamoto Prefecture 52 オリンピック JP web
## 35 Fukui Prefecture 52 オリンピック JP web
## 36 Wakayama Prefecture 51 オリンピック JP web
## 37 Akita Prefecture 51 オリンピック JP web
## 38 Fukuoka Prefecture 50 オリンピック JP web
## 39 Okayama Prefecture 50 オリンピック JP web
## 40 Oita Prefecture 48 オリンピック JP web
## 41 Saga Prefecture 48 オリンピック JP web
## 42 Tottori Prefecture 47 オリンピック JP web
## 43 Tokushima Prefecture 47 オリンピック JP web
## 44 Aomori Prefecture 46 オリンピック JP web
## 45 Miyazaki Prefecture 46 オリンピック JP web
## 46 Okinawa Prefecture 46 オリンピック JP web
## 47 Kagoshima Prefecture 37 オリンピック JP web
##
## $interest_by_dma
## NULL
##
## $interest_by_city
## location hits keyword geo gprop
## 1 Hiratsuka 100 オリンピック JP web
## 2 Asaka NA オリンピック JP web
## 3 Bunkyo 56 オリンピック JP web
## 4 Fujimi NA オリンピック JP web
## 5 Ota 53 オリンピック JP web
## 6 Chuo 51 オリンピック JP web
## 7 Kokubunji NA オリンピック JP web
## 8 Taito 49 オリンピック JP web
## 9 Sumida 49 オリンピック JP web
## 10 Suginami 48 オリンピック JP web
## 11 Niiza NA オリンピック JP web
## 12 Mitaka NA オリンピック JP web
## 13 Arakawa NA オリンピック JP web
## 14 Kamakura NA オリンピック JP web
## 15 Katsushika 45 オリンピック JP web
## 16 Shinjuku 45 オリンピック JP web
## 17 Setagaya 44 オリンピック JP web
## 18 Shibuya 44 オリンピック JP web
## 19 Yamato NA オリンピック JP web
## 20 Itabashi 43 オリンピック JP web
## 21 Nishitokyo NA オリンピック JP web
## 22 Koganei NA オリンピック JP web
## 23 Yokohama 42 オリンピック JP web
## 24 Koto 42 オリンピック JP web
## 25 Minato 41 オリンピック JP web
## 26 Kodaira NA オリンピック JP web
## 27 Fujisawa 40 オリンピック JP web
## 28 Chofu NA オリンピック JP web
## 29 Edogawa 39 オリンピック JP web
## 30 Urayasu 39 オリンピック JP web
## 31 Chigasaki NA オリンピック JP web
## 32 Nerima 38 オリンピック JP web
## 33 Chiyoda 38 オリンピック JP web
## 34 Hino NA オリンピック JP web
## 35 Adachi 38 オリンピック JP web
## 36 Meguro 38 オリンピック JP web
## 37 Toshima 38 オリンピック JP web
## 38 Fuchu 38 オリンピック JP web
## 39 Kawaguchi 37 オリンピック JP web
## 40 Tama NA オリンピック JP web
## 41 Shinagawa 37 オリンピック JP web
## 42 Tachikawa NA オリンピック JP web
## 43 Kita 36 オリンピック JP web
## 44 Tokorozawa NA オリンピック JP web
## 45 Kawasaki 36 オリンピック JP web
## 46 Nagano NA オリンピック JP web
## 47 Ichikawa 34 オリンピック JP web
## 48 Odawara NA オリンピック JP web
## 49 Saitama 34 オリンピック JP web
## 50 Koshigaya NA オリンピック JP web
## 51 Sagamihara 33 オリンピック JP web
## 52 Matsudo 33 オリンピック JP web
## 53 Takarazuka NA オリンピック JP web
## 54 Nagareyama NA オリンピック JP web
## 55 Atsugi NA オリンピック JP web
## 56 Kashiwa 32 オリンピック JP web
## 57 Hachioji 32 オリンピック JP web
## 58 Morioka NA オリンピック JP web
## 59 Kawagoe NA オリンピック JP web
## 60 Nara NA オリンピック JP web
## 61 Chiba 31 オリンピック JP web
## 62 Hirakata NA オリンピック JP web
## 63 Soka NA オリンピック JP web
## 64 Ota 30 オリンピック JP web
## 65 Funabashi 29 オリンピック JP web
## 66 Nagasaki NA オリンピック JP web
## 67 Matsumoto NA オリンピック JP web
## 68 Toyama NA オリンピック JP web
## 69 Gifu NA オリンピック JP web
## 70 Okazaki NA オリンピック JP web
## 71 Tsukuba NA オリンピック JP web
## 72 Yokkaichi NA オリンピック JP web
## 73 Sapporo 26 オリンピック JP web
## 74 Yachiyo NA オリンピック JP web
## 75 Shizuoka 26 オリンピック JP web
## 76 Maebashi NA オリンピック JP web
## 77 Toyonaka NA オリンピック JP web
## 78 Kochi NA オリンピック JP web
## 79 Utsunomiya NA オリンピック JP web
## 80 Nagoya 26 オリンピック JP web
## 81 Suita 26 オリンピック JP web
## 82 Toyota NA オリンピック JP web
## 83 Nishinomiya 25 オリンピック JP web
## 84 Matsuyama NA オリンピック JP web
## 85 Kobe 25 オリンピック JP web
## 86 Kagoshima NA オリンピック JP web
## 87 Kanazawa NA オリンピック JP web
## 88 Sendai 25 オリンピック JP web
## 89 Hiroshima 25 オリンピック JP web
## 90 Kyoto 24 オリンピック JP web
## 91 Kusatsu NA オリンピック JP web
## 92 Fukushima NA オリンピック JP web
## 93 Ageo NA オリンピック JP web
## 94 Takatsuki NA オリンピック JP web
## 95 Osaka 24 オリンピック JP web
## 96 Numazu NA オリンピック JP web
## 97 Higashiosaka NA オリンピック JP web
## 98 Sakai NA オリンピック JP web
## 99 Akashi NA オリンピック JP web
## 100 Naha NA オリンピック JP web
## 101 Hamamatsu 23 オリンピック JP web
## 102 Kitakyushu 23 オリンピック JP web
## 103 Toyohashi NA オリンピック JP web
## 104 Ibaraki NA オリンピック JP web
## 105 Okayama NA オリンピック JP web
## 106 Mito NA オリンピック JP web
## 107 Niigata 22 オリンピック JP web
## 108 Fukuoka 22 オリンピック JP web
## 109 Takamatsu NA オリンピック JP web
## 110 Kakogawa NA オリンピック JP web
## 111 Yokosuka NA オリンピック JP web
## 112 Kurashiki NA オリンピック JP web
## 113 Kumamoto NA オリンピック JP web
## 114 Taishi NA オリンピック JP web
## 115 Ichihara NA オリンピック JP web
## 116 Ichinomiya NA オリンピック JP web
## 117 Koriyama NA オリンピック JP web
## 118 Takasaki NA オリンピック JP web
## 119 Wakayama NA オリンピック JP web
## 120 Amagasaki NA オリンピック JP web
## 121 Fukuyama NA オリンピック JP web
## 122 Oita NA オリンピック JP web
##
## $related_topics
## subject related_topics
## 1 100 top
## 2 87 top
## 3 32 top
## 4 31 top
## 5 28 top
## 6 28 top
## 7 8 top
## 8 8 top
## 9 5 top
## 10 3 top
## 11 3 top
## 12 3 top
## 13 3 top
## 14 3 top
## 15 3 top
## 16 2 top
## 17 2 top
## 18 2 top
## 19 2 top
## 20 2 top
## 21 2 top
## 22 2 top
## 23 1 top
## 24 1 top
## 25 1 top
## 26 Breakout rising
## 27 +1,650% rising
## 28 +1,200% rising
## 29 +950% rising
## 30 +500% rising
## 31 +450% rising
## 32 +450% rising
## 33 +450% rising
## 34 +450% rising
## 35 +450% rising
## 36 +400% rising
## 37 +350% rising
## 38 +300% rising
## 39 +300% rising
## 40 +300% rising
## 41 +250% rising
## 42 +250% rising
## 43 +250% rising
## 44 +250% rising
## 45 +250% rising
## 46 +250% rising
## 47 +250% rising
## 48 +200% rising
## value geo
## 1 Olympic Games JP
## 2 Summer Olympic Games JP
## 3 2020 Summer Olympics JP
## 4 Tokyo JP
## 5 1964 Summer Olympics JP
## 6 1940 Summer Olympics JP
## 7 Olympic Group Corporation JP
## 8 Winter Olympic Games JP
## 9 Sports JP
## 10 Coin JP
## 11 Athlete JP
## 12 1964 JP
## 13 Commemorative coin JP
## 14 Vehicle registration plates of Japan JP
## 15 Ticket JP
## 16 Olympic flame JP
## 17 Paralympic Games JP
## 18 PyeongChang 2018 Olympic Winter Games JP
## 19 Swimming JP
## 20 Olympic Games Rio 2016 JP
## 21 Beijing JP
## 22 2022 Winter Olympics JP
## 23 Chairperson JP
## 24 Organization JP
## 25 Tokyo Organising Committee of the Olympic and Paralympic Games JP
## 26 Naomi Watanabe JP
## 27 Seiko Hashimoto JP
## 28 Yuji Koseki JP
## 29 Chairperson JP
## 30 Rikako Ikee JP
## 31 2032 JP
## 32 Tokyo Organising Committee of the Olympic and Paralympic Games JP
## 33 Organization JP
## 34 Yoshiro Mori JP
## 35 Committee JP
## 36 Ancient Olympic Games JP
## 37 Holiday JP
## 38 2022 JP
## 39 Yuzuru Hanyu JP
## 40 1906 Intercalated Games JP
## 41 Athens JP
## 42 1896 Summer Olympics JP
## 43 1996 Summer Olympics JP
## 44 Symbol JP
## 45 2028 JP
## 46 Japanese Olympic Committee JP
## 47 Beijing JP
## 48 2022 Winter Olympics JP
## keyword category
## 1 オリンピック 0
## 2 オリンピック 0
## 3 オリンピック 0
## 4 オリンピック 0
## 5 オリンピック 0
## 6 オリンピック 0
## 7 オリンピック 0
## 8 オリンピック 0
## 9 オリンピック 0
## 10 オリンピック 0
## 11 オリンピック 0
## 12 オリンピック 0
## 13 オリンピック 0
## 14 オリンピック 0
## 15 オリンピック 0
## 16 オリンピック 0
## 17 オリンピック 0
## 18 オリンピック 0
## 19 オリンピック 0
## 20 オリンピック 0
## 21 オリンピック 0
## 22 オリンピック 0
## 23 オリンピック 0
## 24 オリンピック 0
## 25 オリンピック 0
## 26 オリンピック 0
## 27 オリンピック 0
## 28 オリンピック 0
## 29 オリンピック 0
## 30 オリンピック 0
## 31 オリンピック 0
## 32 オリンピック 0
## 33 オリンピック 0
## 34 オリンピック 0
## 35 オリンピック 0
## 36 オリンピック 0
## 37 オリンピック 0
## 38 オリンピック 0
## 39 オリンピック 0
## 40 オリンピック 0
## 41 オリンピック 0
## 42 オリンピック 0
## 43 オリンピック 0
## 44 オリンピック 0
## 45 オリンピック 0
## 46 オリンピック 0
## 47 オリンピック 0
## 48 オリンピック 0
##
## $related_queries
## subject related_queries value geo keyword
## 1 100 top 東京 オリンピック JP オリンピック
## 2 98 top 東京 JP オリンピック
## 3 34 top オリンピック 中止 JP オリンピック
## 4 21 top 日本 オリンピック JP オリンピック
## 5 20 top オリンピック 2020 JP オリンピック
## 6 20 top オリンピック コロナ JP オリンピック
## 7 16 top オリンピック 開催 JP オリンピック
## 8 13 top 2021 オリンピック JP オリンピック
## 9 12 top オリンピック 競技 JP オリンピック
## 10 12 top オリンピック 日程 JP オリンピック
## 11 11 top オリンピック チケット JP オリンピック
## 12 11 top オリンピック 硬貨 JP オリンピック
## 13 10 top 東京 オリンピック 中止 JP オリンピック
## 14 9 top 東京 2020 オリンピック JP オリンピック
## 15 9 top オリンピック ナンバー JP オリンピック
## 16 8 top 記念 硬貨 オリンピック JP オリンピック
## 17 8 top 1964 オリンピック JP オリンピック
## 18 8 top パラリンピック JP オリンピック
## 19 8 top オリンピック パラリンピック JP オリンピック
## 20 7 top オリンピック 延期 JP オリンピック
## 21 7 top ジュニア オリンピック JP オリンピック
## 22 7 top オリンピック サッカー JP オリンピック
## 23 7 top 東京 オリンピック 1964 JP オリンピック
## 24 6 top オリンピック 委員 会 JP オリンピック
## 25 6 top 北京 オリンピック JP オリンピック
## 26 Breakout rising オリンピック 奪 三振 王 JP オリンピック
## 27 Breakout rising ジュニア オリンピック 陸上 2020 JP オリンピック
## 28 Breakout rising 2021 年 祝日 オリンピック JP オリンピック
## 29 Breakout rising オリンピック 野球 奪 三振 王 JP オリンピック
## 30 Breakout rising 2021 年 祝日 JP オリンピック
## 31 Breakout rising オリンピック 渡辺 直美 JP オリンピック
## 32 Breakout rising 東京 オリンピック オープニング 曲 JP オリンピック
## 33 Breakout rising 渡辺 直美 JP オリンピック
## 34 Breakout rising オリンピック 開会 式 2021 JP オリンピック
## 35 Breakout rising 坂本 龍馬 JP オリンピック
## 36 Breakout rising 2021 年 カレンダー オリンピック JP オリンピック
## 37 +4,800% rising 2021 年 オリンピック JP オリンピック
## 38 +4,400% rising 2021 年 カレンダー JP オリンピック
## 39 +4,150% rising 2021 オリンピック JP オリンピック
## 40 +3,850% rising 北京 オリンピック ボイコット JP オリンピック
## 41 +3,800% rising オリンピック 開会 式 女性 タレント JP オリンピック
## 42 +3,600% rising 東京 オリンピック 2021 JP オリンピック
## 43 +3,600% rising オリンピック 2021 日程 JP オリンピック
## 44 +2,950% rising コナン ドイル オリンピック JP オリンピック
## 45 +2,850% rising オリンピック 中止 決定 日 JP オリンピック
## 46 +2,850% rising 柔道 66kg 級 オリンピック 代表 JP オリンピック
## 47 +2,200% rising 古関 裕 而 JP オリンピック
## 48 +2,000% rising オリンピック は 開催 され る のか JP オリンピック
## 49 +1,550% rising 古関 裕 而 オリンピック マーチ JP オリンピック
## 50 +1,500% rising いけ えりか こ オリンピック JP オリンピック
## category
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
##
## attr(,"class")
## [1] "gtrends" "list"
2. Let’s take another example. Pulling trends data for keywords “olympics” from the last 12 months and for searches made in Brazil. Brazilians don’t seem to be interested in Olympics now.
trends <- gtrends(keyword = c("olympics"), time="today 12-m", geo="BR")
iot2020 <- trends$interest_over_time
Creating two charts. One of them expands a part of the other with ggplot and ggrepel.
iot2020 %>%
top_n(5, hits) %>%
arrange(desc(hits))
## date hits keyword geo time gprop category
## 1 2020-04-26 100 olympics BR today 12-m web 0
## 2 2020-10-04 68 olympics BR today 12-m web 0
## 3 2020-05-03 65 olympics BR today 12-m web 0
## 4 2020-09-06 24 olympics BR today 12-m web 0
## 5 2020-10-18 23 olympics BR today 12-m web 0
iot2020 %>%
ggplot(aes(x = date,
y = hits,group=keyword,
color = keyword)) +
theme_bw()+
labs(title = "Google Web searches for 'Olympics' in 2021",
caption = "Obs: 3/22 was the day with the most searches",
x= NULL, y = "Interest")+
ggforce::facet_zoom(xlim = c(as.POSIXct(as.Date("2021-03-01")),as.POSIXct(as.Date("2021-04-12")))) +
geom_smooth(span=0.1,se=FALSE) + geom_vline(xintercept = as.POSIXct(as.Date("2021-03-22")),color = "red", lwd = 0.5,linetype="dashed")+
theme(legend.position = "none") +
geom_point(color="black")+
geom_label_repel(data = subset(iot2020, hits == 100),
aes(label = as.character(date),),
size = 5,
box.padding = unit(0.35, "lines"),
point.padding = unit(0.3, "lines"))
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'
## Warning in sqrt(sum.squares/one.delta): NaNs produced
To be continued.