2

我想使用存储在外部文件(例如 SVG)中的矢量图形作为我在ggplot2图中的绘图符号。例如,按照 grImport 小插图中的这个示例(图 8)https://cran.r-project.org/web/packages/grImport/vignettes/import.pdf

在此处输入图像描述

此示例导入​​自定义 shapefile,然后使用lattice例如绘制它

xyplot(V8 ~ V7, data = flower, xlab = "Height",
               ylab = "Distance Apart",
               panel = function(x, y, ...) {
                                grid.symbols(PSflower, x, y, units = "native",                     
                                             size = unit(5, "mm"))})

来自包并且grid.symbols()是由.grImportPSflowergrImport

ggimage包接近执行此操作,但它将图像转换为绘图下方的栅格,这是我试图避免的。

有什么办法可以实现类似的东西ggplot2吗?

标记

4

2 回答 2

2

这是我想出的解决方案 - 似乎效果很好。您也可以使用grImport. 关键是确保 grob 的标准化绘图坐标与 ggplot 的原生坐标相匹配。

#Setup
library(grImport2)
library(ggplot2)
library(scales)
src.file <- system.file("SVG", "lwd-rsvg.svg", package="grImport2")
img <- readPicture(src.file)

#Now createa some data
d <- data.frame(x=1:5,y=1:5)

#Need to specify xlims and ylims of plot - this lets us calculate the
#normalised plot coordinates
xlims <- c(0,6)
ylims <- c(0,6)

#Create the plot points using symbolsGrob
sym.grob <- symbolsGrob(img,
                        x=rescale(d$x,from=xlims),
                        y=rescale(d$y,from=ylims),
                        default.units="npc",
                        size=0.3)

#Plot
ggplot(d,aes(x,y))+
  geom_point()+
  annotation_custom(sym.grob)+
  coord_cartesian(xlim=xlims,ylim=ylims,expand=FALSE) #Don't forget this!

在此处输入图像描述

于 2020-04-27T19:11:05.730 回答
1

我在ggimage这里的 github 页面找到了信息:https ://github.com/GuangchuangYu/ggimage/issues/2

library(ggimage)
library(ggplot2)

d = data.frame(x = rnorm(10), y = rnorm(10), image='http://jeroen.github.io/images/tiger.svg')

ggplot(d, aes(x,y, image=image)) + geom_image(size=.1)

这使用矢量图形,但对于您的问题,它是否会生成栅格?

在此处输入图像描述

于 2020-04-24T13:22:56.367 回答