The Julia Language
Julia is a high-level dynamic programming language designed to address the needs of high-performance numerical analysis and computational science. It provides a sophisticated compiler, distributed parallel execution, numerical accuracy, and an extensive mathematical function library.
Here are 3,301 public repositories matching this topic...
In recent versions (can't say from exactly when), there seems to be an off-by-one error in dcc.DatePickerRange. I set max_date_allowed = datetime.today().date(), but in the calendar, yesterday is the maximum date allowed. I see it in my apps, and it is also present in the first example on the DatePickerRange documentation page.
E
You can open a default notebook with the Pluto option
Pluto.run(notebook="test.jl")
Especially when using Pluto as a REST Server (with fonsp/Pluto.jl#1052 ) it would be good to have the possibility to start multiple notebooks from the command line.
Suggested syntax:
Pluto.run(notebook=["test.jl", "test2.jl"])
Currently, the opening of a notebook works by pass
-
Updated
May 28, 2021 - Julia
Issue is in functions like this:
https://github.com/JuliaOpt/MathOptInterface.jl/blob/3f872f9edb50b1a97cb65011430a0160fd56111e/src/Utilities/cachingoptimizer.jl#L539-L557
where we need a branch to see if it is possible to query directly from the optimizer.
Details
(This is related to JuliaPlots/Plots.jl#1706)
For example scatter(skipmissing([1.0, 2.0, missing, 1.0])) fails with Cannot convert Base.SkipMissing{Vector{Union{Missing, Float64}}} to series data for plotting.
Generally skipmissing is not required but it seems odd to see this fail.
Also I stumbled on this while trying to make a histogram, e.g.
-
Updated
May 15, 2021 - Jupyter Notebook
-
Updated
Jul 2, 2021 - Julia
-
Updated
Jul 1, 2021 - Julia
-
Updated
Jul 2, 2021 - Julia
-
Updated
Jun 13, 2021 - Julia
I found that function mod2pi is not implemented yet, but mod works. Is there any list of implemented functions? Minimal working example is:
using Zygote
# This is working
gradient(x -> mod(x, 2pi), 1.)
# This is not
gradient(x -> mod2pi(x), 1.)
-
Updated
Jul 4, 2021 - TypeScript
I've noticed that calling delete! on an Axis3 does not completely remove it:
julia> fig = Figure()
julia> ax = Axis3(fig[1, 1])
Axis3()
julia> surface!(ax, rand(100, 100))
Surface{Tuple{IntervalSets.ClosedInterval{Float32}, IntervalSets.ClosedInterval{Float32}, Matrix{Float32}}}
julia> delete!(ax)

I received this error message: