Goran Nakerst

Results 53 comments of Goran Nakerst

I can confirm this for Julia on ARM with M1 Apple chips. Generating the sysimage is taking over 2.5hrs already without being completed. I noted that the CPU usage of...

After interrupting the creation of the sysimage I got the following error ``` julia> @time create_sysimage(;sysimage_path="PlotsSysImage.so") Precompiling project... 148 dependencies successfully precompiled in 70 seconds ⠙ [04h:13m:15s] PackageCompiler: compiling incremental...

This does not happen in vscode jupyter notebooks rendering. But is seen if I save the figure (to pdf, png, svg). I can provide versioninfos if requested.

Its in versions `1.32`-`1.35` with PyPlot version `2.11`. I will test other pyplot versions.

Plots `1.36.2` is not working with PyPlot `2.6.3` although it should according to compat. But this is another issue

@t-bltg I don't think so. I tried ``` using PyPlot axis("equal") plot([1,2,3],[1,10,100]) ``` and it shows ![grafik](https://user-images.githubusercontent.com/12518354/203151086-e1ff4ae6-b803-465f-a8fd-45f7cde380d4.png) compared to ``` using Plots; pyplot() plot([1,2,3], [1,10,100]; aspect_ratio=:equal) ``` ![grafik](https://user-images.githubusercontent.com/12518354/203151520-292443c7-488e-45ff-97f0-e894c3541ace.png) Please add...

I can confirm this for `python` as well. That is odd.

is `axis("equal")` doing something differently than `ax.set_aspect('equal')`?

It's explained here: https://matplotlib.org/stable/gallery/subplots_axes_and_figures/axis_equal_demo.html

How do I get the "GR"-behavior of `aspect_ratio=:equal` in `pyplot()` ?