2

我创建了一个简单的 wordcloud:

require(wordcloud)    
words <- c('affectionate', 'ambitious', 'anxious', 'articulate', 'artistic', 'caring', 'contented', 'creative', 'cynical', 'daring', 'dependable', 'easygoing', 'energetic', 'funny', 'generous', 'genuine', 'goodlistener', 'goodtalker', 'happy', 'hardworking', 'humerous', 'impulsive', 'intelligent', 'kind', 'loyal', 'modest', 'optimistic', 'outgoing', 'outrageous', 'passionate', 'perceptive', 'physicallyfit', 'quiet', 'rational', 'respectful', 'romantic', 'shy', 'spiritual', 'spontaneous', 'sweet', 'thoughtful', 'warm')
freqs <- c(134, 53, 0, 5, 0, 247, 0, 78, 0, 0, 134, 178, 79, 344, 63, 65, 257, 0, 109, 113, 0, 0, 107, 51, 199, 24, 67, 232, 0, 109, 24, 28, 29, 2, 105, 70, 0, 35, 64, 156, 66, 45)
wordcloud(words, freqs)

我想把它放到一个“grob”中,这样​​我就可以将它与包中使用grid.arrange()的其他几个图一起安排gridExtra

require(ggplot2)
p1 <- qplot(1:10, rnorm(10), colour = runif(10))
require(gridExtra)
grid.arrange(p1, my.wordcloud)

我知道我的 wordcloud 必须是一个“grob”才能做到这一点,但我不明白如何做到这一点。我尝试使用包grob()中的函数gridExtra,但这不起作用。建议?

4

2 回答 2

8

调整代码wordcloud以构建需要在网格中填写 text.grob 的数据应该不难。在指定限制为 0,0 和 1, 1 的窗口后wordcloud,代码将 x、y、文本和 rot 值发送到基本函数。text

我需要在 for 循环之前添加这个:

textmat <- data.frame(x1=rep(NA, length(words)), y1=NA, words=NA_character_, 
                       rotWord=NA, cexw=NA, stringsAsFactors=FALSE )

这在 for 循环的末尾:

 textmat[i, c(1,2,4,5) ] <-  c(x1=x1, y1=y1, rotWord=rotWord*90, cexw = size[i] )
 textmat[i, 3] <- words[i]

并且需要修改对 的调用.overlap,因为它显然没有导出:

if (!use.r.layout) 
         return(wordcloud:::.overlap(x1, y1, sw1, sh1, boxes))

循环完成后,我无形地返回了它:

return(invisible(textmat[-1, ]))  # to get rid of the NA row at the beginning

将其命名为 wordcloud2 后:

> tmat <- wordcloud2(c(letters, LETTERS, 0:9), seq(1, 1000, len = 62))
> str(tmat)
'data.frame':   61 obs. of  5 variables:
 $ x1     : num  0.493 0.531 0.538 0.487 ...
 $ y1     : num  0.497 0.479 0.532 0.475 ...
 $ words  : chr  "b" "O" "M" ...
 $ rotWord: num  0 0 0 0 0 0 0 0 0 ...
 $ cexw   : num  0.561 2.796 2.682 1.421 ...

draw.text <- function(x,y,words,rotW,cexw) {
     grid.text(words, x=x,y=y, rot=rotW, gp=gpar( fontsize=9*cexw)) }

for(i in 1:nrow(tmat) ) { draw.text(x=tmat[i,"x1"], y=tmat[i,"y1"], 
                                    words=tmat[i,"words"], rot=tmat[i,"rotWord"], 
                                    cexw=tmat[i,"cexw"]) }

如建议:

 with(tmat, grid.text(x=x1, y=y1, label=words, rot=rotWord, 
                      gp=gpar( fontsize=9*cexw)) }  # untested
于 2013-03-23T08:54:12.057 回答
3

你可以使用gridBase包但有一个聪明的视口。在这里,我vpStack用来获得良好的尺寸。

par(mfrow=c(1, 2))
wordcloud(words, freqs)
plot.new()              
vps <- baseViewports()
p <- qplot(1:10, rnorm(10), colour = runif(10))
print(p,vp = vpStack(vps$figure,vps$plot))

在此处输入图像描述

编辑knitr如果您只想生成 pdf,请使用。

如果您只想创建一个可以使用的 pdf,则另一种选择Knitr。混合网格和基本图形非常简单。乳胶将为您完成这项工作。例如,通过这个chunk就可以得到上面的结果。

<<mixgridwithggplot, fig.show='hold',out.width='.5\\linewidth'>>=
wordcloud(words, freqs)
qplot(1:10, rnorm(10), colour = runif(10))
@

我很确定knitr可以在代码后面的单个 png 中创建 2 个图的 png。

于 2013-03-23T09:39:37.500 回答