1

在R下使用ggplot2(并且下面的代码使用rpy2,我实际上并不知道直接R,对不起)。

我正在尝试将 aspect_ratio 添加到我的情节中(这样它就可以很好地放在幻灯片上)。下面的例子非常小。Aspect_ratio 做了正确的事情,除了标题和 x 轴标签分别放置在图的上方和下方,标题和图之间以及图和 x 轴标签之间有一个巨大的空白区域,如(plot here)

   TITLE TITLE


PLOT PLOT PLOT PLOT
PLOT PLOT PLOT PLOT
PLOT PLOT PLOT PLOT
PLOT PLOT PLOT PLOT


    x-axis label

不酷。我该怎么做才能把它们挤在一起?

#!/usr/bin/env python2.6
import rpy2.robjects.lib.ggplot2 as ggplot2
import rpy2.robjects as ro
from rpy2.robjects.packages import importr

df = ro.DataFrame({'x': ro.IntVector((1,2)), 'y': ro.IntVector((3,4))})
pp = ggplot2.ggplot(df) + \
    ggplot2.aes_string(x='x', y='y') + \
    ggplot2.opts(**{'title' : 'Title',
                    'aspect.ratio' : 0.618033989} ) + \
    ggplot2.geom_line()
grdevices = importr('grDevices')
grdevices.pdf(file="aspect.pdf")
pp.plot()
grdevices.dev_off()
4

1 回答 1

0

这是当前布局系统的一个限制,我希望尽快解决。

于 2010-10-15T12:50:46.297 回答