Hongyang Zhou

Results 59 comments of Hongyang Zhou

I have recently learned that in Julia you can change compilation level per package. For scripting tasks like being described here, it might be useful to just stick to `-O0`,...

> Can we create an oblique slice from any kind of functions in 3 dimension, e.g. f(x,y) = x^2 + y^2 ? If you mean `f(x,y,z) = x^2 + y^2...

Thanks for the work on this! Is there any progress especially on the log scale colorbar? What is stopping us from merging #3620?

Hmm, I don't know if I myself can be representative for a large demand... But for certain the lack of smooth support of log scale colormap/colorbar is one of the...

I actually have a use case where taking the log on the data cannot work: a `histogram2d` with weights. ```julia x = rand(1000) y = rand(1000) w = 10 .^(10...

Still failing on Julia 1.5.1. Looking forward to the working version!

``` D:\Test>julia _ _ _ _(_)_ | Documentation: https://docs.julialang.org (_) | (_) (_) | _ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help. |...

Here it is: ``` D:\Test>mpiexec -n 1 julia status.jl ERROR: LoadError: IOError: stat: permission denied (EACCES) for file "C:\\WINDOWS\\system32\\config\\systemprofile" Stacktrace: [1] stat(::String) at .\stat.jl:69 [2] ispath at .\stat.jl:311 [inlined] [3]...

I'm also expecting an example python package that uses JuliaCall, i.e. a demonstration of Python wrapper over a Julia package. More specifically, I'm expecting demos of - type conversions, e.g....

I learn something more! So here is a situation where I want to pass a Julia object (currently shown as `AnyValue`) to a Python function. I have a Julia package...