Hi,
I created a 20 pages PDF with graphs and charts in R.
In one of the pages I need to incorporate a .jpeg snipped image from a document.
How would you do that?
Tried a few options that I found online such as plot(), print(), image().
pdf(file="file.pdf"),paper="USr", width=10, height = 7)
print(".jpeg loaction")
dev.off()
The code above didnt really work.
Thanks