AlgebraOfGraphics.jl
AlgebraOfGraphics.jl copied to clipboard
Combine ingredients for a plot
Hi, thanks for such a cool package! I am copying this discussion from the [slack](https://julialang.slack.com/archives/C8RQUU2KH/p1626126804154100) here regarding formatting ticklabels from timeseries data: --- @icweaver said: I have some timeseries data...
I have a documentation request (previously mentioned in https://github.com/JuliaPlots/AlgebraOfGraphics.jl/issues/159#issuecomment-893067504). From the FAQ: > If you do need column-wise transformations, consider implementing a custom analysis, such as density, which takes the...
From discussion over at https://github.com/piever/SplitApplyPlot.jl/discussions/16#discussioncomment-626919 - [x] a text annotation plot (#128) - [x] a custom plot type wired correctly into this system, even with tricky argument / attribute orders...
Areas of the docs needing most improvements: - [x] [Drawing section](http://juliaplots.org/AlgebraOfGraphics.jl/dev/layers/draw/) - [ ] [Visual section](http://juliaplots.org/AlgebraOfGraphics.jl/dev/generated/visualtransformations/) (describe how `visual` works instead of just showcasing particular examples) - [x] Helper functions...
An example of how to set a theme would be greatly appreciated. Something like this or better: using AlgebraOfGraphics, CairoMakie using Colors # for the palette set_aog_theme!() update_theme!( Theme( palette...
I couldn't find an easy way to access the plot objects created by AoG. Here's an example: ```julia # This examle needs https://github.com/JuliaPlots/Makie.jl/issues/1163 to work properly using AlgebraOfGraphics, CairoMakie set_aog_theme!()...
Thank you for this awesome package! I'm a huge fan of grammar of graphics and I'm excited to see a native Julia implementation of this paradigm. The [tutorial](http://juliaplots.org/AlgebraOfGraphics.jl/dev/generated/penguins/#Smooth-density-plots) and the...
If I want to plot a scatter plot on top of a box plot with `visual(BoxPlot) + visual(Scatter)` using colour to distinguish an additional dimension (with `color=:var, dodge=:var` in `mapping`)...
Legend currently doesn't pick up an e.g. markercolor: ```julia df = ( x = 1:10, y = rand(10), attr = ["m $i" for i in 1:10], ) draw(data(df) * mapping(:x,...
This is to discuss a simpler syntax for passing data and mappings together, as requested on [Discourse](https://discourse.julialang.org/t/beautiful-makie-gallery/62523/22). The given example was ```julia x = range(-π, π, length=100) y = sin.(x)...