gpt4 book ai didi

r - 将图像插入到 ggplot2

转载 作者:行者123 更新时间:2023-12-03 07:52:49 27 4
gpt4 key购买 nike

是否可以在 geom_line() 下插入光栅图像或 pdf 图像?在 ggplot2阴谋?

我希望能够快速在先前计算的绘图上绘制数据,该绘图需要很长时间才能生成,因为它使用了大量数据。

我通读了这个 example .但是,由于它已经一年多了,我认为现在可能有一种不同的方式来做到这一点。

最佳答案

试试 ?annotation_customggplot2
例子,

library(png)
library(grid)
img <- readPNG(system.file("img", "Rlogo.png", package="png"))
g <- rasterGrob(img, interpolate=TRUE)

qplot(1:10, 1:10, geom="blank") +
annotation_custom(g, xmin=-Inf, xmax=Inf, ymin=-Inf, ymax=Inf) +
geom_point()

关于r - 将图像插入到 ggplot2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9917049/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com