Results 221 comments of Benedikt Ehinger

ok - I needed this again and couldnt find a solution. I implemented a new Makie Recipe `Dodge`, which allows you to do exactly this. Please find the gist here:...

ah and of course with AoG ![image](https://user-images.githubusercontent.com/10183650/216820584-df9a12f6-f4ca-470a-9fe3-6c103c2c4e99.png) ```julia let d = DataFrame(:x=>["x2","x1","x2","x1","x3","x3","x4"],:y=>[2.,1.1,2.1,1.,3.,3.1,4],:c=>["a","a","b","b","b","b","b"]) d.high = repeat([0.1],nrow(d)) d.low = repeat([0.1],nrow(d)) data(d)* mapping(color=:c,dodge=:c) * ( mapping(:x,:y,:low,:high,)* visual(Dodge,plot_fun=errorbars!) + mapping(:x,:y) * visual(Dodge) ) |>...

Great that this is moving along!! Would be amazing to have both, without needing to redo the `Page` if the website is closed / reopened. One question (maybe only for...

I use julia 1.10 with newest pluto 0.19.37. I have similar issues but with two twists: 1) it seems to work in firefox for days at a time - before...

Ah this is helpful already! I have access to the server on Monday again. The rebuilding I have done before, but I'm not a full stack developer and haven't worked...

could such a function work with AoG? PS: I made something related with Dodge, e.g. `Dodge(Scatter,...)` - but the other way round ;) https://github.com/MakieOrg/AlgebraOfGraphics.jl/issues/393#issuecomment-1417789588

further, jitter would need access to both `x` & `y`, x to jitter, y to calculate the kde

It is still unclear to me how this would work with AoG.jl

ok- then I would have to rewrite it though, to follow the AoG syntax. This is unlikely to happen in the next months, pretty swamped. Here is an example: https://github.com/MakieOrg/AlgebraOfGraphics.jl/blob/master/src/transformations/smooth.jl...

very nice! beautiful :-)