11

是否可以将图像添加到图表区域之外的 ggplot 图表?

我知道可以使用 annotate_raster 和 annotate_custom 将图像添加到图表中,但是它们都在图表中添加图像。我需要在图表上方的右上角添加公司徽标 - 在标题级别。

使用 annotate_custom 添加图像的示例:将图像 插入 ggplot2

更新:根据 user1317221_G 的建议,我可以将图像放在外面。

library(png)
library(grid)
library(ggplot2)
img <- readPNG(system.file("img", "Rlogo.png", package="png"))

g <- rasterGrob(img, interpolate=TRUE)
plt <- qplot(1:10, 1:10, geom="blank") +
      opts(title = 'Title') + 
      geom_point() 
plt2 <- plt + annotation_custom(g, xmin=9, xmax=10, ymin=10.5, ymax=11.25)

gt <- ggplot_gtable(ggplot_build(plt2))
gt$layout$clip[gt$layout$name == "panel"] <- "off"
grid.draw(gt)

我想自动放置图像 - 自动确定 xmin/xmax 和 ymin/ymax。使用传统图形我可以调用 par('usr') 并获取图表参数,但这不适用于 ggplot 图表。是否有一种简单的方法来确定 ggplot 中的绘图区域?例如获取 plt 的大小并将限制值插入 plt2

UPDATE2:如果您使用刻面,此方法也不起作用。例如,我想将徽标放在标题级别的右上角,如下图所示,如果使用上述方法,则会出现错误。

d <- ggplot(diamonds, aes(carat, price, fill = ..density..)) + 
     xlim(0, 2) + 
     stat_binhex(na.rm = TRUE) + 
     labs(title = 'Title') +
     theme(aspect.ratio = 1) + 
     facet_wrap(~ color, scales = "free_x")
4

1 回答 1

7

刻面时,annotation_custom在所有面板中绘制注释。因此,annotation-custom可能不是最好的方法。这是使用包中的函数的两次尝试grid。两者都不是完全自动的,但您可能能够调整其中一个以满足您的需求。他们设置了一个 2 X 2 网格,使用grid.show.layout()命令显示。在第一个中,多面图填充了整个面板,右上角的视口包含徽标。碰巧的是,在您的情节中,徽标有明显的空间。请注意布局中视口占用的行和列的方式layout.pos.row和方式。layout.pos.col

library(ggplot2)
library(png)
library(grid)

# Get the logo
img <- readPNG(system.file("img", "Rlogo.png", package="png"))
g <- rasterGrob(img)

# Set the size of the viewport to contain the logo
size = unit(2, "cm")

# Get the graph
d <- ggplot(diamonds, aes(carat, price)) + 
     xlim(0, 2) + 
     stat_binhex(na.rm = TRUE) + 
     labs(title = 'Title') +
     theme(aspect.ratio = 1) + 
     facet_wrap(~ color, scales = "free_x")

# Set up the layout for grid 
heights = unit.c(size, unit(1, "npc") - size)
widths = unit.c(unit(1, "npc") - size, size)
lo = grid.layout(2, 2, widths = widths, heights = heights)
# Show the layout
grid.show.layout(lo)

# Position the elements within the viewports
grid.newpage()
pushViewport(viewport(layout = lo))

    # The plot
pushViewport(viewport(layout.pos.row=1:2, layout.pos.col = 1:2))
print(d, newpage=FALSE)
popViewport()

    # The logo
pushViewport(viewport(layout.pos.row=1, layout.pos.col = 2))
print(grid.draw(g), newpage=FALSE)
popViewport()
popViewport()

# To save the object
g = grid.grab()

grid.newpage()
grid.draw(g)

标题与徽标并不完全一致。一种解决方法是从 ggplot 中删除标题,绘制一个包含标题的单独 textGrob,然后将 textGrob 放置在包含徽标的视口旁边的左上角视口中。

# Get the logo
img <- readPNG(system.file("img", "Rlogo.png", package="png"))
g <- rasterGrob(img)

# Set the size of the viewport to contain the logo
size = unit(2, "cm")

# Get the graph
d <- ggplot(diamonds, aes(carat, price)) + 
     xlim(0, 2) + 
     stat_binhex(na.rm = TRUE) + 
     # labs(title = 'Title') +
     theme(aspect.ratio = 1) + 
     facet_wrap(~ color, scales = "free_x")

# and the title
title = textGrob("Title", gp = gpar(face = "bold", cex = 2))

# Set up the layout for grid 
heights = unit.c(size, unit(1, "npc") - size)
widths = unit.c(unit(1, "npc") - 1.5*size, size)
lo = grid.layout(2, 2, widths = widths, heights = heights)
# Show the layout
grid.show.layout(lo)

# Position the elements within the viewports
grid.newpage()
pushViewport(viewport(layout = lo))

    # The plot
pushViewport(viewport(layout.pos.row=2, layout.pos.col = 1:2))
print(d, newpage=FALSE)
popViewport()

    # The logo
pushViewport(viewport(layout.pos.row=1, layout.pos.col = 2))
print(grid.draw(g), newpage=FALSE)
popViewport()

    # The title
pushViewport(viewport(layout.pos.row=1, layout.pos.col = 1))
print(grid.draw(title), newpage=FALSE)
popViewport()
popViewport()

# To save the object
g = grid.grab()

grid.newpage()
grid.draw(g)

在此处输入图像描述

于 2012-09-18T23:02:45.047 回答