Skip to content
Prev 269013 / 398502 Next

dotchart vs. dotplot ... groups

On 8/17/2011 11:29 AM, mkzodet at comcast.net wrote:
Something similar (though still not what you wanted) using ggplot would be:

dev.new(width=3,height=3)
ggplot(dta, aes(x=var3, y=var2)) +
	geom_point() +
	scale_y_reverse(breaks=1:4, expand=c(0,0.5)) +
	facet_grid(var1~., scales="free", space="free") +
	theme_bw()