I have a set of 150x150px png images, and a set of (x, y) coordinates that they correspond to. Is there a way to plot the images on a grid? For example, I'm looking for an R or Python solution to create something like the following:

| ||||
|
feedback
|
|
You create a bounding box by instantiating AnnotationBbox--once for each image that you wish to display; the image and its coordinates are passed to the constructor. The code is obviously repetitive for the two images, so once that block is put in a function, it's not as long as it seems here.
| ||||
|
feedback
|
|
One way to do it in R (2.11.0 and higher):
see ?readPNG and ?rasterImage for details.
| ||||
|
feedback
|
|
I would use matplotlib for that. this demo shows something similar, I am sure it can be adapted to your particular problem | |||
|
feedback
|
|
In R, readed in the help(rasterImage):
....is a nice example. | ||||
|
feedback
|
|
Also in R you can use the my.symbols and ms.image functions in the TeachingDemos package. | |||
|
feedback
|

