wordcloud()
機能プロット全体を塗りつぶします。つまり、プロットする前にタイトルのグラフィックスデバイスにスペースを確保する必要があります。
wordcloud
は基本グラフを使用しているため、par(mfrow=...)
またはlayout()
のいずれかでこれを行うことができます。次に、プロットタイトルをtext()
で作成します。
私は?wordcloud
に例を適応させる、layout()
を示しています
library(tm)
library(wordcloud)
x <- "Many years ago the great British explorer George Mallory, who
was to die on Mount Everest, was asked why did he want to climb
it. He said, \"Because it is there.\"
Well, space is there, and we're going to climb it, and the
moon and the planets are there, and new hopes for knowledge
and peace are there. And, therefore, as we set sail we ask
God's blessing on the most hazardous and dangerous and greatest
adventure on which man has ever embarked."
layout(matrix(c(1, 2), nrow=2), heights=c(1, 4))
par(mar=rep(0, 4))
plot.new()
text(x=0.5, y=0.5, "Title of my first plot")
wordcloud(x, main="Title")
これが生成します。
これはいいアイデアです、多分私は、余分な情報を追加する際に使用します後でPNGs。しかし、まさに私が望むものではありません。ワードクラウドの世代の時にタイトルを挿入してください。 – knb
@kndあなたの質問(png)のタイトルは間違いにつながると思います。アンドリーはあなたに正しい答えを与えます。この答えはプロットの注釈のようなものです。 – agstudy