2017-02-03 73 views
1

假設,我有一個數據框,其中包含一些詞與他們的頻率。我想創建R中有標誌的形狀,裏面的字wordcloud,例如Twitter的標誌,就像這樣: enter image description here具有特定形狀的Wordcloud

+0

好難過。在google中輸入只能提供python解決方案。 –

回答

7

可以使用wordcloud2軟件包內。它允許您使用任何圖像作爲蒙版。只需放入工作目錄並使用figpath鏈接到它。以下是我用來製作wordcloud的代碼。下面是wordcloud。 Here是我用作蒙版的圖像。

library(wordcloud2) 
wordcloud2(demoFreq, figPath = "twitter.jpg") 

enter image description here