有没有办法将图像插入到 R 的绘图中并在我这样做时设置它的颜色?我想为给定的数据集插入一个轮廓,并将其设置为与我为绘制相应数据点选择的颜色相匹配。我对如何管理图形没有深入的了解——在一般的计算机系统和 R 中——这可能会为这个问题的答案提供信息。
下面的代码将插入图像,但我想不出改变颜色的方法。
require(jpeg)
thiscolor <- "red"
plot(x=c(1, 4), y=c(1, 2), main="test plot", col=thiscolor)
thispic <- readJPEG(<insert path for any image here>)
rasterImage(thispic,
xleft=3, xright=3.5,
ytop=2, ybottom=1.8,
)