AlgebraOfGraphics.jl
AlgebraOfGraphics.jl copied to clipboard
Combine ingredients for a plot
This is mainly for CI so we can add a branch which supports Makie v0.21 for downstream tests!
## Bug description Using `visual(Contourf; colorrange=(x, y))` will result in an incorrect plot where the colorbar does not reflect the values being plotted. This is apparently because setting `colorrange` does...
Here's an MWE ``` julia> using CategoricalArrays; julia> d = DataFrame(x = ["z", "a", "b"], v = [1, 2, 3]); julia> d.x = categorical(d.x, ; levels = d.x); julia> data(d)...
It would be really nice if AlgebraOfGraphics.jl ignored missing values better. Current behavior is un-intuitive and likely not desired by anyone: It treats the entire column as categorical. The desired...
~~I have a plot with many facets that I am not able to `paginate` using the `col` and `row` arguments.~~ `paginate(plt; row, col)` called on a plot that has no...
It would be super nice if I could supply a `mapping(:x_cord, :y_cord, error=:stddev)` mapping. It would perhaps be nice to have a version `error_x` to allow errorbars in that dimension...
I would have needed this pointer, so I added it when discovering the possibility.
## Bug description I'm trying to map data to the `alpha` keyword, to create varying transparency for different data points. When I try to do so, it throws a Method...
While AoG is just a relatively small wrapper around Makie, it introduces signficant compile times. One big reason for this seems to be the heavy use of NamedTuples, which introduces...