AlgebraOfGraphics.jl icon indicating copy to clipboard operation
AlgebraOfGraphics.jl copied to clipboard

Combine ingredients for a plot

Results 151 AlgebraOfGraphics.jl issues
Sort by recently updated
recently updated
newest added

I'm not sure how to specify grid and spines of a facet through `draw`, nor can I find an answer in the docs. The code below worked a few weeks...

See [this thread](https://discourse.julialang.org/t/hide-axis-labels/67443). Right now, we are hijacking the `title...` attributes of the axis, but we should allow user to distinguish `xfacetlabel` and `yfacetlabel`. Related: make sure that invisible facet...

AlgebraOfGraphics.jl exports `data`. But it is one of the most common variable names, leading to frequent name clashes. I do not see what the best solution is, but as I...

Allow pre-grouped syntax to work in conjunction with the `data` syntax. Ideally one should be able to use either the `dims()` context or the `data(df)` context, both or none. Requires:...

It would be nice to have the option to add or change the main title of the plot, something like [`ggtitle`](https://r-charts.com/ggplot2/titles/) in `ggplot2` or like the [title property](https://vega.github.io/vega-lite/docs/title.html) in Vega-Lite....

For example, the following shows no output in IJulia: ```julia df = (x=1:2, y=[5,10], s=["a", "b"]) draw(data(df) * mapping(:x, :y, color=:s) * visual(Scatter, marker='o', markersize=[20, 30])) ``` and attempting to...

AlgebraOfGraphics is very nice! I was wondering if support for jitter is planned, i.e. adding a bit of randomness to the positions of scatter points to help with overplotting. For...

I'm seeing a ~~strange~~ bug ~~that I don't quite understand~~ on AoG 0.6.0: This code runs successfully ```julia show_decades = (4,5,6,7) plotdf = subset(plotdf, :decade => ByRow(∈(show_decades))) plt = mapping(:percent,...

Re https://discourse.julialang.org/t/algebraofgraphics-question/72982 To name axes or legends in this format you would use the pair syntax, that is `x => "x"` , `y => "y"` , `grp => "group"` ....

I've made a Pluto notebook which reads the shapes of all countries (using `Shapefile`) from [Natural Earth](https://www.naturalearthdata.com) and renders them, thus creating a world map. I've used AoG for this...