These days I am extensively using R to scatter plots. Most of the plotting is concerned with image processing, Recently I was thinking of plotting the scatter plots over an image.

For example, I want something like this, The background needs to be filled with my image. With a particular scale. And I should be able to draw points (co-ordinates) on top of this image ...

Is this possible in R? If not, do you guys know of any other tool that makes this easy ...

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

I'm not 100% sure what you have in mind, but I think first you want to load and plot an image in R. You can do that with the ReadImages package:

picture <- read.jpeg("avatar.jpg")
plot(picture)

Then you can do a scatter plot on top of it:

points(runif(50,0, 128), runif(50,0,128))

This yields (when run on your avatar picture)alt text:

link|improve this answer
+1 thank you for the exact answer – Alphaneo Sep 9 '09 at 23:39
feedback

A step-by-step tutorial to this kind of plotting is in the R-wiki

link|improve this answer
+1 thank you for the nice link ... – Alphaneo Sep 9 '09 at 23:39
The link is broken, and while the domain stays and still contains an R wiki, I don't even know which article to look for. – rumtscho Nov 8 '11 at 21:07
I've updated the link to the new address – Aaron Statham Dec 6 '11 at 2:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.