Mattriks
Mattriks
After #415 was merged ([actions link](https://github.com/GiovineItalia/Compose.jl/runs/1798631589)): ```julia ┌ Info: Deployment criteria for deploying devbranch build from GitHub Actions: │ - ✔ ENV["GITHUB_REPOSITORY"]="GiovineItalia/Compose.jl" occurs in repo="github.com/GiovineItalia/Compose.jl.git" │ - ✔ ENV["GITHUB_EVENT_NAME"]="push" is...
The issue outlined in GiovineItalia/Gadfly.jl#1273 is not the same as the issue above. The issue above is not data dependent and only affects the Cairo backends. The issue in GiovineItalia/Gadfly.jl#1273...
Example 2 below works! ## Example 1 ```julia n = 100 @btime g1 = compose(context(), (context(), Compose.circle(rand(n),rand(n),rand(n)/100), fill(["red" for i in 1:n]), stroke(nothing)) ) ``` 39.532 μs (635 allocations: 26.56...
For example, consider `Geom.line` in Gadfly ([link to Geom.line code](https://github.com/GiovineItalia/Gadfly.jl/blob/86b294b2119b5f802154eeee68257c4486d5d788/src/geom/line.jl#L116-L120)). It takes a "subgroup first, plot later" approach. Also did you try saving the image before you plot it in...
I would have to investigate what the root cause is. The general issue here is that because of the design of Compose, property vectors are expensive (so the solution might...
Yes I was asking about the number of unique colors. Since the (no. of colors)/(no. of points) is small, then having a context per color sounds more Composesque (it is...
`xparse` is a function in [Parsers.jl v0.3](https://github.com/JuliaData/Parsers.jl). One or more of your packages is holding Parsers back. It might be `CSV`: CSV v0.5 requires Parsers 0.3, but CSV 0.4.3 does...
[Parsers.jl](https://github.com/JuliaData/Parsers.jl) is up to v1.0.x, so I assume the above issue is outdated.
In Compose `context-stroke` is used for marker arrows, and markers are defined at the top of the svg file (whether you use them or not). You could manually edit the...
You can't test an svg v1.2 file (`tomato.svg`) using an svg 1.1 validator. This validator will pass for svg 1.2: https://validator.nu/?doc=http%3A%2F%2Fstephendavies.org%2Ftomato.svg. Green box at the bottom says "the document validates...