AlgebraOfGraphics.jl
AlgebraOfGraphics.jl copied to clipboard
Combine ingredients for a plot
Dear all, When I use AlgebraOfGraphics.jl, How can I hide the legend title? Here is an example. using RDatasets, AlgebraOfGraphics, CairoMakie df = dataset("datasets", "iris") plt = data(df) * mapping(:Species,...
I want to set the format of a date axis, without having to manually choose the tick locations. See also https://discourse.julialang.org/t/dateformat-makie/85381
The `dims` function is used inside the `mapping` function throughout the documentation, especially in [Wide Data](http://juliaplots.org/AlgebraOfGraphics.jl/dev/gallery/gallery/data%20manipulations/wide_data/#Wide-data), but I can't find an explanation of it anywhere. It should at least be...
## Bug description I am trying to `save()` a figure as PDF, but am unable to do so. The resulting image is always png. ## Steps to reproduce Draw a...
## Problem description I have some data that I'd like to histogram over two grouping factors. The histograms should be compared vertically, so I'd like to apply `datalimits` only when...
I expected the `!` facet `m` row to be empty but it has colored boxes without text. There is also something strange going on with the tick alignment around there....
Any plans to add cornerplot and corrplot like in StatsPlots.jl? Perhaps it is already possible to achive similar result with AOG?
## Bug description I am trying to plot a series with `Date` objects in the x-axis according to the [example](https://docs.juliahub.com/AlgebraOfGraphics/CHIaw/0.4.0/generated/gallery/#Time-series) in the documentation and `draw` errors out. ## Steps to...
I frequently misread the `col` keyword argument to `mapping` as "color". In the context of plotting, `"col" = "color"` springs to mind much more readily than `"col" = "column"`. In...
The following works fine: ```julia df = (x=1:3, y=1:3, c=1:3) plt = data(df) * mapping(:x, :y, color=:c => nonnumeric) * visual(alpha=0.5) draw(plt) ``` but if I remove the `nonnumeric` I...