You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was making a notebook with plots from multiple packages (to compare them) when I found that using Gadfly introduces an error when calling AlgebraOfGraphics.draw(). The error message mentions some Compose.jl object, but the draw method I call and the AlgebraOfGraphics.Layer I call it on don't seem to be directly affected.
I checked that the following returns the same before and after using Gadfly:
julia>typeof(iris_frequency)
AlgebraOfGraphics.Layer
help?> AoG.draw
No documentation found.
AlgebraOfGraphics.draw is a Function.
# 1 method for generic function "draw":
[1] draw(s::Union{AlgebraOfGraphics.Layer, AlgebraOfGraphics.Layers}; axis, figure, palettes) in AlgebraOfGraphics at /home/me/.julia/packages/AlgebraOfGraphics/4qspg/src/algebra/layers.jl:148
(juliaplotting) pkg> status
Status `~/Repos/juliaplotting/Project.toml`
[cbdf2221] AlgebraOfGraphics v0.4.5
[13f3f980] CairoMakie v0.5.10...
[c91e804a] Gadfly v1.3.3...
[ce6b1742] RDatasets v0.7.5
The text was updated successfully, but these errors were encountered:
I'm not really sure if this is a Gadfly.jl/Compose.jl or a AlgebraOfGraphics.jl issue so I thought I make an issue at both repos. here
I was making a notebook with plots from multiple packages (to compare them) when I found that
using Gadfly
introduces an error when callingAlgebraOfGraphics.draw()
. The error message mentions some Compose.jl object, but the draw method I call and the AlgebraOfGraphics.Layer I call it on don't seem to be directly affected.this works fine
but using Gadfly introduces an error
I checked that the following returns the same before and after
using Gadfly
:The text was updated successfully, but these errors were encountered: