AlgebraOfGraphics.jl
AlgebraOfGraphics.jl copied to clipboard
Combine ingredients for a plot
Consider this example. https://beautiful.makie.org/dev/examples/aog/density_ridges the second one should be rotated.
Turning an AoG spec into a Makie spec allows to update an AoG plot interactively https://github.com/user-attachments/assets/047c72eb-4620-44a0-b3e9-d0b6f9038c1c This is so far only a very basic proof of concept.
This pull request changes the compat entry for the `Makie` package from `0.23` to `0.23, 0.24`. This keeps the compat entries for earlier versions. Note: I have not tested your...
## Bug description When setting the `xaxisposition` to `:top`, the x-labels does not display above the top spine. I would expect the x-label to be above the, now, top x-axis....
## Bug description When setting the `xaxisposition` to `:top`, the xaxis tick labels overlap with the column labels. I would expect the column labels to automatically "bump" further up to...
Hi! I'm enjoying the new legend interactivity feature: https://github.com/MakieOrg/Makie.jl/pull/4927 -- however it appears that AoG.jl legends aren't interactive. Would it be possible to have the interactivity in AoG too?
Currently if we do, only a date format with `year/month/day` is shown, which then when zoom-ing is less useful, because we cannot see the hours a those scales. Any workaround...
## Problem description As far as I can tell, there is no way to directly adjust the fontsize of the facet labels. Sometimes the labels I'd like are a little...
## Bug description This error shows up when using `dodge` in `mapping` for a `visual(RainCloud)`: ```julia julia> let fig fig = Figure() plt = data(plot_df) * mapping(:band_name, :value; dodge=:site_name, color=:site_name,...
Before these changes ```julia using CairoMakie using AlgebraOfGraphics df = ( x=repeat(1:2, inner=5), y=[6, 4, 2, -8, 3, 5, 1, -2, -3, 7], group=repeat('A':'E', outer=2), ) draw(data(df) * visual(Waterfall, show_direction=true)...