Quantcast
Channel: グラフ - 廿TT
Viewing all articles
Browse latest Browse all 123

ggplot2で検索クエリのワードクラウド

$
0
0

ただパッケージ動かしてみたってだけなんですけど。

f:id:abrahamcow:20190209063403p:plain

はい。

ぼくは原則的にはワードクラウドを使う必要ない(棒グラフのほうが優れている)と思っているんですけど、最近軟弱になってきてる。

library(searchConsoleR)library(ggwordcloud)
scr_auth()
sc_websites <- list_websites()
scdata <- search_analytics(sc_websites[1,1],
                           startDate ="2019-01-01",
                           endDate ="2019-01-31",
                           dimensions = c("query"),
                           dimensionFilterExp ="page~~/entry/2017/05/05/150436")

ggplot(scdata,aes(label=query,size=impressions,colour=ctr))+
  geom_text_wordcloud(family="Osaka",show.legend =TRUE)+
  scale_size_area(max_size =16)+
  theme_minimal()

ggwordcloud: a word cloud geom for ggplot2


Viewing all articles
Browse latest Browse all 123

Trending Articles