R:以pdf为背景的情节

时间:2012-02-13 10:09:56

标签: r pdf plot

我想使用现有的pdf文件作为背景在R中绘图。我不想使用其他格式(png,jpg,gif)的原因是我不想在我(已经存在的)pdf文件中丢失任何图像质量。有什么建议?非常感谢!

1 个答案:

答案 0 :(得分:3)

非常感谢蒂姆riffe!我在那份文件中找到了答案:

首先将pdf转换为ps。然后使用grImport包完成剩下的工作:

#convert the ps to xml:
PostScriptTrace("image.ps")

# store the xml info in RGML format (R Graphics Markup Language):
NLmap <- readPicture("image.ps.xml")

#plot the image
plot(etc...)
par(new=T)
plot(grid.picture(NLmap[-1]),etc...)