如何将徽标添加到 ggplot 可视化?

How can I add a logo to a ggplot visualisation?

我目前正在制作 ggplot 柱形图,我正在尝试在右下角添加徽标。这是图表的代码:

df <- data.frame(Names = c("2001", "2004", "2008", "2012", "2018"),
                  Value = c(47053, 68117, 171535, 241214, 234365))

p <- ggplot(df, aes(x = Names, y = Value)) + 
              geom_col(fill = "#DB4D43") + theme_classic() +
              geom_text(aes(label =  Value, y = Value + 0.05), 
                        position = position_dodge(0.9), 
                        vjust = 0)

我按照我在网上找到的这个教程进行操作,但出于某种原因,它不会让我调整徽标的大小,而且无论我在 image_scale 函数中键入什么,它最终看起来都太小了.

img <- image_read("Logo.png")
img <- image_scale(img,"200")
img <- image_scale(img, "x200")
g <- rasterGrob(img)

size = unit(4, "cm")

heights = unit.c(unit(1, "npc") - size,size)
widths = unit.c(unit(1, "npc") - size, size)
lo = grid.layout(2, 2, widths = widths, heights = heights)

grid.show.layout(lo)

grid.newpage()
pushViewport(viewport(layout = lo))

pushViewport(viewport(layout.pos.row=1:1, layout.pos.col = 1:2))
print(p, newpage=FALSE)
popViewport()

pushViewport(viewport(layout.pos.row=2:2, layout.pos.col = 2:2))
print(grid.draw(g), newpage=FALSE)
popViewport()

g = grid.grab()

grid.newpage()
grid.draw(g)

rm(list=ls())

我找到了另一个教程,在尝试这个之后,当我 运行 它根本没有显示任何内容。

mypng <- readPNG('Logo.png')
print(mypng)

logocomp <- p + annotation_raster(mypng, ymin = 4.5,ymax= 5,xmin = 30,xmax = 35)

尝试使用 grid.raster,例如:

grid::grid.raster(img, x = 0.15, y = 0.05, width = unit(0.5, 'inches'))

xy 定义图像的位置。 调整 unit() 中的数字以调整图的大小。

您可以使用 cowplot 包轻松地将图像添加到使用 ggplot 制作的任何绘图中。我使用 R 标志作为需要添加到图中的图像(使用 magick 包来读取它)。使用 cowplot 的优点之一是您可以轻松指定绘图和图像的大小和位置。

library(cowplot)
library(magick)

img <- image_read("Logo.png")

# Set the canvas where you are going to draw the plot and the image
ggdraw() +
  # Draw the plot in the canvas setting the x and y positions, which go from 0,0
  # (lower left corner) to 1,1 (upper right corner) and set the width and height of
  # the plot. It's advisable that x + width = 1 and y + height = 1, to avoid clipping 
  # the plot
  draw_plot(p,x = 0, y = 0.15, width = 1, height = 0.85) +
  # Draw image in the canvas using the same concept as for the plot. Might need to 
  # play with the x, y, width and height values to obtain the desired result
  draw_image(img,x = 0.85, y = 0.02, width = 0.15, height = 0.15)