AlgebraOfGraphics.jl
                                
                                 AlgebraOfGraphics.jl copied to clipboard
                                
                                    AlgebraOfGraphics.jl copied to clipboard
                            
                            
                            
                        Combine ingredients for a plot
Hi! I have just noticed that `markersize` does not create a legend.  Code example: ```julia using RDatasets, AlgebraOfGraphics, CairoMakie set_aog_theme!() iris = dataset("datasets", "iris") plt = data(iris) * mapping(:PetalWidth,...
When faceting a plot over a large number of columns/rows (or just wrapping with `layout`) the size of the plots can sometimes become quite unwieldy and requires manual intervention to...
Given the below recipe `Makie` will dispatch to the right method when given input `x` of type `CategoricalVector` to `myrecipe(x, y)`. ```julia using CairoMakie, AlgebraOfGraphics, CategoricalArrays @recipe(MyRecipe, x, y) do...
Consider a data frame with three columns: x value, y value, color. ```julia using DataFrames, AlgebraOfGraphics, CairoMakie x = [1,2,3,4] y0 = [1,2,3,4] y1 = y0.+1 df = DataFrame(x=[x;x],y=[y0;y1],color=[0,0,0,0,1,1,1,1]) ```...
The current default font is Fira Sans, which does have [tabular figures](https://en.wikipedia.org/wiki/List_of_typographic_features#Features_intended_for_digits_and_math), but the feature is not enabled by default: - Fira Sans default  - Fira Sans...
The syntax in AOG seems to be (I might be wrong here) that things that vary according to data go in `mapping` whereas things that you specify explicitly (fillcolor etc)...
There seems to be an edge case we do not cover, in that with ```julia df = ( sepal_length = 1 .+ rand(100), sepal_width = 2 .+ rand(100), petal_length =...
I'm trying to plot using a custom recipe but I keep running into various errors (my issue might be related to #109). The following MWE ```julia using GLMakie, AlgebraOfGraphics struct...
Consider whether we need some specific support (for instance with a discretised `batlow`) for categorical variables with a well-defined order (eg, describing a price or an age, or bins of...
Thought it'd be useful to highlight that AoG plots are "just" Makie