I have a plot where I've got enough points packed together that some are indistinguishable. What's a good way to fix this? With ggplot2 I'd either make the points translucent or add jitter, but I can't figure out how do to either with Gadfly.
I'm plotting with commands like plot(ndf[ndf[:level].==3,:], x="name", y="miss_ratio", color="policy", Scale.y_log2) which generates something like http://danluu.com/plot-draft/ The problem is that in columns with multiple clusters, you can't always tell which points belong to which cluster. Thanks, Dan
