Update AlgebraOfGraphicsExt.jl (#25) #102
Annotations
7 warnings
Documentation:
../../../.julia/packages/Documenter/C1XEF/src/utilities/utilities.jl#L46
failed to run `@example` block in src/examples/scales.md
```@example logscale
import CairoMakie # hide
CairoMakie.activate!() # hide
import Main.MakieDocsHelpers4 # hide
var"#result" = begin # hide
using SwarmMakie, CairoMakie
data = randn(75) .+ 3
fig = Figure()
ax1 = Axis(fig[1, 1]; title = "No transform")
beeswarm!(ax1, ones(75), data)
ax2 = Axis(fig[1, 2]; title = "Log y axis", yscale = log10)
beeswarm!(ax2, ones(75), data)
fig
end # hide
if var"#result" isa Makie.FigureLike # hide
MakieDocsHelpers4.AsMIME(MIME"image/png"(), var"#result") # hide
else # hide
var"#result" # hide
end # hide
```
exception =
DomainError with -0.7675400142040845:
log10 was called with a negative real argument but will only return a complex result if called with a complex argument. Try log10(Complex(x)).
Stacktrace:
[1] throw_complex_domainerror(f::Symbol, x::Float64)
@ Base.Math ./math.jl:33
[2] _log(x::Float64, base::Val{10}, func::Symbol)
@ Base.Math ./special/log.jl:301
[3] log10
@ ./special/log.jl:268 [inlined]
[4] apply_transform
@ ~/.julia/packages/Makie/gG38B/src/layouting/transformation.jl:334 [inlined]
[5] #1041
@ ~/.julia/packages/Makie/gG38B/src/layouting/transformation.jl:330 [inlined]
[6] iterate
@ ./generator.jl:47 [inlined]
[7] collect_to!
@ ./array.jl:892 [inlined]
[8] collect_to_with_first!
@ ./array.jl:870 [inlined]
[9] _collect(c::Vector{Point{2, Float64}}, itr::Base.Generator{Vector{Point{2, Float64}}, Makie.var"#1041#1042"{Tuple{typeof(identity), typeof(log10)}}}, ::Base.EltypeUnknown, isz::Base.HasShape{1})
@ Base ./array.jl:864
[10] collect_similar
@ ./array.jl:763 [inlined]
[11] map
@ ./abstractarray.jl:3285 [inlined]
[12] apply_transform
@ ~/.julia/packages/Makie/gG38B/src/layouting/transformation.jl:330 [inlined]
[13] apply_transform
@ ~/.julia/packages/Makie/gG38B/src/layouting/transformation.jl:273 [inlined]
[14] (::SwarmMakie.var"#8#12"{Observable{Vector{Point{2, Float32}}}, Observable{Vector{Point{2, Float32}}}, Scene})(positions::Vector{Point{2, Float64}}, algorithm::SimpleBeeswarm, tfunc::Tuple{typeof(identity), typeof(log10)}, markersize::Int64, side::Symbol, direction::Symbol, gutter::Nothing, gutter_threshold::Float64, ::Bool)
@ SwarmMakie ~/work/SwarmMakie.jl/SwarmMakie.jl/src/recipe.jl:111
[15] invokelatest(::Any, ::Any, ::Vararg{Any}; kwargs::@kwargs{})
@ Base ./essentials.jl:892
[16] invokelatest(::Any, ::Any, ::Vararg{Any})
@ Base ./essentials.jl:889
[17] (::Observables.OnAny)(value::Any)
@ Observables ~/.julia/packages/Observables/YdEbO/src/Observables.jl:420
[18] #invokelatest#2
@ ./essentials.jl:892 [inlined]
[19] invokelatest
@ ./essentials.jl:889 [inlined]
[20] notify
@ ~/.julia/packages/Observables/YdEbO/src/Observables.jl:206 [inlined]
[21] plot!(plot::Plot{SwarmMakie.beeswarm, Tuple{Vector{Point{2, Float64}}}})
@ SwarmMakie ~/work/SwarmMakie.jl/SwarmMakie.jl/src/recipe.jl:149
[22] connect_plot!(parent::Scene, plot::Plot{SwarmMakie.beeswarm, Tuple{Vector{Point{2, Float64}}}})
@ Makie ~/.julia/packages/Makie/gG38B/src/interfaces.jl:393
[23] plot!
@ ~/.julia/packages/Makie/gG38B/src/interfaces.jl:410 [inlined]
[24] plot!(ax::Axis, plot::Plot{SwarmMakie.beeswarm, Tuple{Vector{Point{2, Float64}}}})
@ Makie ~/.julia/packages/Makie/gG38B/src/figureplotting.jl:412
[25] _create_plot!(::Function, ::Dict{Symbol, Any}, ::Axis, ::Vector{Float64}, ::Vararg{Vector{Float64}})
@ Makie ~/.julia/packages/Makie/gG38B/src/figureplotting.jl:381
[26] beeswarm!(::Axis, ::Vararg{Any}; kw::@kwargs{})
@ SwarmMakie ~/.julia/packages/MakieCore/rTINf/src/recipes.jl:189
[27] top-level scope
@ scales.md:11
[28] eval
@ ./boot.jl:385 [inlined]
[29] #60
@ ~/.julia/packages/Documenter/C1XEF/src/expander_pipeline.jl:754 [inli
|
Documentation:
../../../.julia/packages/Documenter/C1XEF/src/utilities/utilities.jl#L46
failed to run `@example` block in src/examples/scales.md
```@example logscale
import CairoMakie # hide
CairoMakie.activate!() # hide
import Main.MakieDocsHelpers4 # hide
var"#result" = begin # hide
ax2.xscale = Makie.pseudolog10
ax2.title = "Log x and y axes"
fig
end # hide
if var"#result" isa Makie.FigureLike # hide
MakieDocsHelpers4.AsMIME(MIME"image/png"(), var"#result") # hide
else # hide
var"#result" # hide
end # hide
```
exception =
DomainError with -0.7675400142040845:
log10 was called with a negative real argument but will only return a complex result if called with a complex argument. Try log10(Complex(x)).
Stacktrace:
[1] throw_complex_domainerror(f::Symbol, x::Float64)
@ Base.Math ./math.jl:33
[2] _log(x::Float64, base::Val{10}, func::Symbol)
@ Base.Math ./special/log.jl:301
[3] log10
@ ./special/log.jl:268 [inlined]
[4] apply_transform
@ ~/.julia/packages/Makie/gG38B/src/layouting/transformation.jl:334 [inlined]
[5] #1041
@ ~/.julia/packages/Makie/gG38B/src/layouting/transformation.jl:330 [inlined]
[6] iterate
@ ./generator.jl:47 [inlined]
[7] collect_to!(dest::Vector{Point{2, Float64}}, itr::Base.Generator{Vector{Point{2, Float64}}, Makie.var"#1041#1042"{Tuple{ReversibleScale{Makie.var"#1045#1047", Makie.var"#1046#1048", IntervalSets.OpenInterval{Float32}}, typeof(log10)}}}, offs::Int64, st::Int64)
@ Base ./array.jl:892
[8] collect_to_with_first!
@ ./array.jl:870 [inlined]
[9] _collect(c::Vector{Point{2, Float64}}, itr::Base.Generator{Vector{Point{2, Float64}}, Makie.var"#1041#1042"{Tuple{ReversibleScale{Makie.var"#1045#1047", Makie.var"#1046#1048", IntervalSets.OpenInterval{Float32}}, typeof(log10)}}}, ::Base.EltypeUnknown, isz::Base.HasShape{1})
@ Base ./array.jl:864
[10] collect_similar
@ ./array.jl:763 [inlined]
[11] map
@ ./abstractarray.jl:3285 [inlined]
[12] apply_transform
@ ~/.julia/packages/Makie/gG38B/src/layouting/transformation.jl:330 [inlined]
[13] apply_transform
@ ~/.julia/packages/Makie/gG38B/src/layouting/transformation.jl:273 [inlined]
[14] (::SwarmMakie.var"#8#12"{Observable{Vector{Point{2, Float32}}}, Observable{Vector{Point{2, Float32}}}, Scene})(positions::Vector{Point{2, Float64}}, algorithm::SimpleBeeswarm, tfunc::Tuple{ReversibleScale{Makie.var"#1045#1047", Makie.var"#1046#1048", IntervalSets.OpenInterval{Float32}}, typeof(log10)}, markersize::Int64, side::Symbol, direction::Symbol, gutter::Nothing, gutter_threshold::Float64, ::Bool)
@ SwarmMakie ~/work/SwarmMakie.jl/SwarmMakie.jl/src/recipe.jl:111
[15] invokelatest(::Any, ::Any, ::Vararg{Any}; kwargs::@kwargs{})
@ Base ./essentials.jl:892
[16] invokelatest(::Any, ::Any, ::Vararg{Any})
@ Base ./essentials.jl:889
[17] (::Observables.OnAny)(value::Any)
@ Observables ~/.julia/packages/Observables/YdEbO/src/Observables.jl:420
[18] #invokelatest#2
@ ./essentials.jl:892 [inlined]
[19] invokelatest
@ ./essentials.jl:889 [inlined]
[20] notify
@ ~/.julia/packages/Observables/YdEbO/src/Observables.jl:206 [inlined]
[21] setindex!(observable::Observable, val::Any)
@ Observables ~/.julia/packages/Observables/YdEbO/src/Observables.jl:123
[22] (::Makie.var"#1026#1028"{Transformation})(f::Tuple{ReversibleScale{Makie.var"#1045#1047", Makie.var"#1046#1048", IntervalSets.OpenInterval{Float32}}, typeof(log10)})
@ Makie ~/.julia/packages/Makie/gG38B/src/layouting/transformation.jl:24
[23] #invokelatest#2
@ ./essentials.jl:892 [inlined]
[24] invokelatest
@ ./essentials.jl:889 [inlined]
[25] notify
@ ~/.julia/packages/Observables/YdEbO/src/Observables.jl:206 [inlined]
[26] setindex!(observable::Observable, val::Any)
@ Observables ~/.julia/packages/Observables/YdEbO/src/Observables.jl:123
[27] (::Makie.var"#1697#1728"{Scene})(xsc::Function, ysc::Function)
@ Makie ~/.julia/packag
|
Documentation:
../../../.julia/packages/DocumenterVitepress/tIz9X/src/writer.jl#L668
DocumenterVitepress: un-expanded `@example logscale` block encountered on page src/examples/scales.md.
The first few lines of code in this node are:
```
import CairoMakie # hide
CairoMakie.activate!() # hide
import Main.MakieDocsHelpers4 # hide
var"#result" = begin # hide
using SwarmMakie, CairoMakie
data = randn(75) .+ 3
```
|
Documentation:
../../../.julia/packages/DocumenterVitepress/tIz9X/src/writer.jl#L668
DocumenterVitepress: un-expanded `@example logscale` block encountered on page src/examples/scales.md.
The first few lines of code in this node are:
```
import CairoMakie # hide
CairoMakie.activate!() # hide
import Main.MakieDocsHelpers4 # hide
var"#result" = begin # hide
ax2.xscale = Makie.pseudolog10
ax2.title = "Log x and y axes"
```
|
Documentation:
../../../.julia/packages/DocumenterVitepress/tIz9X/src/vitepress_config.jl#L40
DocumenterVitepress: Did not detect `docs/src/.vitepress/config.mts` file. Substituting in the default file.
|
Documentation:
../../../.julia/packages/Documenter/C1XEF/src/deploydocs.jl#L533
removing `stable` and linking `stable` to `v0.1.1`.
|
Documentation:
../../../.julia/packages/Documenter/C1XEF/src/deploydocs.jl#L533
removing `v0.1` and linking `v0.1` to `v0.1.1`.
|