Tamas Nagy

Results 108 comments of Tamas Nagy

This seems related to the concept of [swimlanes](https://kanbantool.com/support/kanban-board/what-are-swimlanes) as brought up in #237.

Thank you, that makes sense. I'll have to do some digging to see if the CSS/JS is conserved between IPython Notebooks or not. If they are, then this should be...

Do you propose then to remove `p2.statistics` and push all stats to `p2.layers[1].statistics`?

Is it possible to convert `LaTeXStrings` to Julia's unicode symbols? It would nice to be able to copy LaTeX equations from elsewhere and include them in a `Gadfly` plot. Also...

I don't have the bandwidth to be developing Gadfly (maybe @bjarthur, or @Mattriks?) so I think it would be up to someone to take the time to submit a PR.

We now have the ability to generate conditional density distributions! ```julia using RDatasets, Gadfly df = dataset("ggplot2", "diamonds") plot(df, x=:Carat, color=:Cut, Geom.density(scale=:count, position=:fill)) ``` ![image](https://user-images.githubusercontent.com/1661487/40815732-58b43efe-64fd-11e8-951e-ffc34c6bd1f3.png) @Mattriks and @bjarthur do you...

There's a bug in `KernelDensity.jl` that will sometimes cause this PR to fail. It would probably be best if my fix (https://github.com/JuliaStats/KernelDensity.jl/pull/52) is merged and tagged prior to merging this...

Thanks for the review. I won't have time to fix this for a bit and I want to make sure we get it right before merging. > also, does this...

I don't have time right now to revamp this PR so I'm okay with letting it get a bit stale and then finalize it a bit later. There are enough...

My guess from looking at it quickly is that the horizontal stacked bar graph (with colors) uses this calculation https://github.com/GiovineItalia/Gadfly.jl/blob/72e4b92c6c591d3a3d58ceef1287e7514da62dd2/src/geom/bar.jl#L119 instead of this one when there are no colors https://github.com/GiovineItalia/Gadfly.jl/blob/72e4b92c6c591d3a3d58ceef1287e7514da62dd2/src/geom/bar.jl#L59...