AlgebraOfGraphics.jl
AlgebraOfGraphics.jl copied to clipboard
Combine ingredients for a plot
AoG errored here when setting a column of Ints to `nonnumeric` and then trying to map them. The solution was to define these methods.
## Problem description I would like to have an optional layer in the background, to which I then add some other layers on top. The manual states that `mapping()` is...
Not quite sure how to describe this, but I get ```julia using AlgebraOfGraphics # v0.6.12 using CairoMakie # v0.8.13 function mwe() df = DataFrame(:x => rand(5), :y => rand(5), :group...
awesome package. would be great to quickly draw correlation between features in a data frame, like Seaborn does [here](https://seaborn.pydata.org/examples/many_pairwise_correlations.html).
# Problem description Currently, AlgebraOfGraphics does not really have a concept of "aesthetics" as in ggplot, the logic is rather based around shared keyword arguments and conventional use of positional...
From https://aog.makie.org/stable/generated/penguins/#Smooth-density-plots the sections "smooth density plots" and "correlating three variables" are missing their first 3-4 images. Likely an error in the doc build. (probably a good idea to make...
## Bug description When LatexStrings are provided as input to `renamer`, it shows up as normal text with "$" around it and not the latex output. ## Steps to reproduce...
## Bug description Using `histogram` with `visual(Lines)` used to work, however after upgrading `Makie` or `AoG`, now it produces error. ## Steps to reproduce Adapting the codes in the doc,...
```julia using Makie, CairoMakie, AlgebraOfGraphics xs = range(0, 1; length=101) ys = collect(range(0, 1; length=101)) ys[1] = NaN upper = ys .+ 0.1 lower = ys .- 0.1 linesfill(xs, ys;...
## Bug description `density` is [documented](https://aog.makie.org/stable/generated/analyses/#AlgebraOfGraphics.density) as expecting `datalimits` to be a 2-tuple, e.g., `density(datalimits=(0,10))`. However, when you go to plot the data with `draw(plt)`, that leads to the error...