GRUtils.jl icon indicating copy to clipboard operation
GRUtils.jl copied to clipboard

Tools for using the GR framework in Julia

Results 13 GRUtils.jl issues
Sort by recently updated
recently updated
newest added

The use case is similar to the one described in https://discourse.julialang.org/t/101185/3 and https://github.com/heliosdrm/GRUtils.jl/issues/123#issuecomment-1625592409. Basically, given a `Matrix` of size `MxN` generate a `1:1` plot of the image. Namely the dimensions...

- [ ] https://github.com/jheinen/GR.jl/commit/3d7ac265df9e871d3aab05b0243a3c740a2339c6 - [ ] https://github.com/jheinen/GR.jl/commit/d2ad7fec4ee245b9b6b81ab07727cfc0ffd4eafd - [ ] https://github.com/jheinen/GR.jl/commit/5080dfb9ac1fe70a45f707ffe8b318400a6fe5c3

When I create subplots, the labels on the 3D graphs are not in the correct position. This occurs not only in GRUtils, but also in GR. ```julia import GR import...

gr upstream

https://github.com/jheinen/GR.jl/commit/9b1dd41252bdf188539bebc5262765b024d73bd4 https://github.com/jheinen/GR.jl/commit/39d9cea254d4747ae7db55fdcbca38bc5a92bc17

Parity with https://github.com/jheinen/GR.jl/commit/944d4caaa2

enhancement

Sometimes it happens that the inner perfectionist is eager to move the axis labels and the title closer to the axes. I think it would be especially handy if the...

enhancement

Thanks for working on GRUtils! I'm really liking the syntax and speed. I have a question regarding aspect ratio. I've been playing around with the following implementation of `spy()` (to...

First of all: Many thanks for this great package. So far I simply didn't have the time to deal with `GRUtils` intensively. I have now tried to use `GRUtils` completely...

discussion

From #45: > I currently observe a slight performance loss of 30-40% when switching from GR to GRUtils. I would like to investigate this in more detail. I have made...

discussion

Take this code: ```julia angles = LinRange(0, 30, 100) radii = LinRange(-2, 4, 100) polar(angles, radii) ``` This is the output of GR: ![gr_polarplot](https://user-images.githubusercontent.com/10651028/73872671-6a866e80-4850-11ea-82ce-63e85337fa45.png) But GRUtils makes this: ![grutils_polarplot_1](https://user-images.githubusercontent.com/10651028/73872702-7eca6b80-4850-11ea-8156-927528e7c7b6.png) There...

discussion