Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way of creating scatterplots with marginal histograms just like in the sample below in ggplot2? In Matlab it is the scatterhist() function and there exist equivalents for R as well. However, I haven't seen it for ggplot2.

scatterplot with marginal histograms

I started an attempt by creating the single graphs but don't know how to arrange them properly.

 require(ggplot2)
 x<-rnorm(300)
 y<-rt(300,df=2)
 xy<-data.frame(x,y)
     xhist <- qplot(x, geom="histogram") + scale_x_continuous(limits=c(min(x),max(x))) + opts(axis.text.x = theme_blank(), axis.title.x=theme_blank(), axis.ticks = theme_blank(), aspect.ratio = 5/16, axis.text.y = theme_blank(), axis.title.y=theme_blank(), background.colour="white")
     yhist <- qplot(y, geom="histogram") + coord_flip() + opts(background.fill = "white", background.color ="black")

     yhist <- yhist + scale_x_continuous(limits=c(min(x),max(x))) + opts(axis.text.x = theme_blank(), axis.title.x=theme_blank(), axis.ticks = theme_blank(), aspect.ratio = 16/5, axis.text.y = theme_blank(), axis.title.y=theme_blank() )


     scatter <- qplot(x,y, data=xy)  + scale_x_continuous(limits=c(min(x),max(x))) + scale_y_continuous(limits=c(min(y),max(y)))
none <- qplot(x,y, data=xy) + geom_blank()

and arranging them with the function posted here. But to make long story short: Is there a way of creating these graphs?

share|improve this question
Just to offer the notion that maybe you shouldn't always use ggplot, see this implementation in base R graphics: addictedtor.free.fr/graphiques/RGraphGallery.php?graph=78 – DWin Dec 17 '11 at 14:48
@DWin right thank you - but i think that's pretty much the solution i gave in my question. however, i like the geom_rag() think very much given by you below! – Seb Dec 17 '11 at 17:02
from a recent blog post that features the same topic: blog.mckuhn.de/2009/09/learning-ggplot2-2d-plot-with.html looks also quite nice :) – Seb Apr 24 at 6:37

3 Answers

up vote 21 down vote accepted

The gridExtra package should work here. Start by making each of the ggplot objects:

hist_top <- ggplot()+geom_histogram(aes(rnorm(100)))
empty <- ggplot()+geom_point(aes(1,1), colour="white")+
         opts(axis.ticks=theme_blank(), 
              panel.background=theme_blank(), 
              axis.text.x=theme_blank(), axis.text.y=theme_blank(),           
              axis.title.x=theme_blank(), axis.title.y=theme_blank())

scatter <- ggplot()+geom_point(aes(rnorm(100), rnorm(100)))
hist_right <- ggplot()+geom_histogram(aes(rnorm(100)))+coord_flip()

Then use the grid.arrange function:

grid.arrange(hist_top, empty, scatter, hist_right, ncol=2, nrow=2, widths=c(4, 1), heights=c(1, 4))

plot

share|improve this answer
1  
1+ for demonstrating the placement, but you should not be re-doing the random sampling if you want the interior scatter to "line up" with the marginal histograms. – DWin Dec 17 '11 at 16:35
You're right. They're sampled from the same distribution though, so the marginal histograms should theoretically match the scatter plot. – oeo4b Dec 17 '11 at 17:03
4  
In "theory" they will be asymptotically "match"; in practice the number of times they will match is infinitesimally small. It's very easy to use the example provided xy <- data.frame(x=rnorm(300), y=rt(300,df=2) ) and use data=xy in the ggplot calls. – DWin Dec 17 '11 at 17:10
7  
Arrrgh! The whole point of histograms is to analyze DATA in a manner that doesn't impose theoretical constraints. – DWin Dec 17 '11 at 17:27
1  
No, they would not, in general. ggplot2 currently outputs a varying panel width that changes depending on the extent of the axis labels etc. Have a look at ggExtra::align.plots to see the kind of hack that is currently required to align axes. – baptiste Dec 18 '11 at 18:51
show 4 more comments

This is not a completely responsive answer but it is very simple. It illustrates an alternate method to display marginal densities and also how to use alpha levels for graphical output that supports transparency:

scatter <- qplot(x,y, data=xy)  + 
         scale_x_continuous(limits=c(min(x),max(x))) + 
         scale_y_continuous(limits=c(min(y),max(y))) + 
         geom_rug(col=rgb(.5,0,0,alpha=.2))
scatter

enter image description here

share|improve this answer
2  
That's an interesting way to show the density. Thanks for adding this answer. :) – Michelle Dec 17 '11 at 18:54
3  
It should be noted that this method is much more commonplace than putting marginal histograms. In fact, have rug plots is common in published articles where I have never seen a published article with marginal historgrams. – Xu Wang Dec 17 '11 at 23:26

One addition, just to save some searching time for people doing this after us.

Legends, axis labels, axis texts, ticks make the plots drifted away from each other, so your plot will look ugly and inconsistent.

You can correct this by using some of these theme settings,

+theme(legend.position = "none",          
       axis.title.x = element_blank(),
       axis.title.y = element_blank(),
       axis.text.x = element_blank(),
       axis.text.y = element_blank(), 
       plot.margin = unit(c(3,-5.5,4,3), "mm"))

and align scales,

+scale_x_continuous(breaks = 0:6,
                    limits = c(0,6),
                    expand = c(.05,.05))

so the results will look OK:

an example

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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