Tamas Nagy

Results 108 comments of Tamas Nagy

Hey @bjarthur, was this fixed? Because this is a bug on Gadfly's side. I haven't had time to put together a PR yet.

Have you tried doing `Geom.subplot_grid(Coord.cartesian())`?

I just ran into this too and it looks like my proposed solution doesn't work. ```julia using DataFrames, Gadfly srand(123) a = DataFrame(:a=>rand(20).*15, :b=>rand(20), :c=>rand(0:1, 20)) plot(a, x=:a, y=:b, xgroup=:c,...

@bjarthur and @Mattriks, this looks good to go to me.

Have you tried passing `Coord.cartesian(fixed=true)`? http://gadflyjl.org/stable/lib/coords/coord_cartesian.html#Coord.cartesian-1

This looks like a bug. It seems like there is an issue with Coord.subplot_grid respecting Coord.cartesian's fixed aspect ratio request.

Any help is appreciated! Maybe try looking at the subplot render function: https://github.com/dcjones/Gadfly.jl/blob/cb28d6aca6b031d01e44146799e520b8bb0d349b/src/geom/subplot.jl#L139

I think that's a good idea. Going forward, I think `Theme` would benefit from a hierarchical construction which also allows sharing of subthemes in a CSS-like manner.

I just ran into this problem as well. In my case, I would like to plot the centroid of a cell above it as it is moving. I defined the...

I had even commented on the 2nd PR haha. Thanks for finding that @Mattriks. I'll see if I can get around to updating that code and see if all the...