I need to import multiple images and present an output like a collage. I was thinking is doing a treemap with the image size mapped to the score of the character.
df <- data.frame(character=c("Homer","Marge", "Bart", "Lisa","Maggie", "Moe", "Blinky","Bumblebee Man","Duffman","Maude Flanders","Ned Flanders","Rod Flanders","Todd",Jimbo","Otto Mann","Snowball"),score=c(268,267,495, 432, 219, 373, 152, 356, 461, 116,107,165, 305,228, 461, 608))
I had used treemap before and also ggplot geom_tile but i am not sure if it is possible to generate pictures whithin tiles. I don't even know how to insert the images into my dataframe for plotting...