Daniel Schwabeneder

Results 43 comments of Daniel Schwabeneder

We already use that here https://github.com/JuliaPlots/Plots.jl/blob/master/src/backends/gr.jl#L344

> we get postdecimal_digits(2.5e-22) == 23 on windows and 25 on linux and macos. I don't get this on linux: ```julia julia> versioninfo() Julia Version 1.7.3 Commit 742b9abb4d (2022-05-06 12:58...

Thanks for your quick response! Yes, I basically just copied the NixOS implementation. I completely understand that your time is limited. Is there anything I can do to make testing...

Hi, thanks a lot for reporting! Unfortunately I cannot reproduce this, which makes it hard to fix or check if it is fixed. Since you already proposed a solution it...

@SebastianAment could you provide a MWE to reproduce the issue?

See also https://github.com/JuliaPlots/Plots.jl/issues/1416. You can use `linecolor = invisible() ` as a workaround.

Or probably `linealpha = 0` is also sufficient.

But i think we could include this workaround in the gr backend code.

This repo is no longer maintained. I think you'd have to replace `d` with `plotattributes` in the code. But there may be other issues. The last commit to this repo...

I think ```julia plot(Normal()) ``` does what you want. ![normal](https://user-images.githubusercontent.com/16589944/60395678-61555680-9b37-11e9-8ed1-2b1eee039a78.png) `density` tries to fit a kde based on sample data, like e.g. ```julia data = rand(Normal(), 100) density(data) ``` ![density](https://user-images.githubusercontent.com/16589944/60395682-69ad9180-9b37-11e9-8d14-55cf359cc26d.png)