2
画像にプロットする必要があります。私が持っている問題は、私のPNGイメージがグリッドに調整していないということです。画像サイズをggplot2グリッドに調整してください。
library(webshot)
library(png)
webshot("http://www.doctormetrics.com/","doctor.png")
img <- readPNG("doctor.png")
dim(img)
x11()
g <- rasterGrob(img, interpolate=TRUE)
qplot(1:2, 1:2, geom="blank") +
annotation_custom(g, xmin=-Inf, xmax=Inf, ymin=-Inf, ymax=Inf) +
geom_point()
を行うことができますあなたが 'unit(1、" npc ")'のように幅と高さを指定するのに必要なアスペクト比の制約 – baptiste
@baptisteに感謝します。 –