4
我目前使用wordle來進行詞雲的許多藝術用途。我認爲R的詞雲可能有更好的控制。wordcloud中的空格
1)你如何保留一個大寫字雲的詞? [解決]
2)如何將兩個單詞作爲wordcloud中的一個塊? (wordle使用〜操作符來實現這一點,R的詞雲只是照原樣打印〜)[例如,在「to」和「be」之間有一個〜我想要在詞雲的空間中]
require(wordcloud)
y<-c("the", "the", "the", "tree", "tree", "tree", "tree", "tree",
"tree", "tree", "tree", "tree", "tree", "Wants", "Wants", "Wants",
"Wants", "Wants", "Wants", "Wants", "Wants", "Wants", "Wants",
"Wants", "Wants", "to~be", "to~be", "to~be", "to~be", "to~be",
"to~be", "to~be", "to~be", "to~be", "to~be", "to~be", "to~be",
"to~be", "to~be", "to~be", "to~be", "to~be", "to~be", "to~be",
"to~be", "when", "when", "when", "when", "when", "familiar", "familiar",
"familiar", "familiar", "familiar", "familiar", "familiar", "familiar",
"familiar", "familiar", "familiar", "familiar", "familiar", "familiar",
"familiar", "familiar", "familiar", "familiar", "familiar", "familiar",
"leggings", "leggings", "leggings", "leggings", "leggings", "leggings",
"leggings", "leggings", "leggings", "leggings")
wordcloud(names(table(y)), table(y))
您的原始代碼是可重複的,我根據我對這個問題的答案。您的編輯不再可重複,我的答案不再有意義。 – Andrie
@Andrie對不起,其中一些是自定義函數,我刪除了將來參考 –