Jeffrey Erlich
Jeffrey Erlich
This section is broken (again?) https://turinglang.org/v0.31/tutorials/10-bayesian-differential-equations/#inference-of-a-stochastic-differential-equation The plot in the tutorials shows no sampling (the chains are just flat lines). Running the section gives this warning (over and over): ```...
Thanks for a really cool and useful package. Sorry if this is a naive question but would there be a way to add points to the Interpolant without starting from...
``` using GLMakie # using CairoMakie # Both give same bug foo() = begin f = Figure() ax = Axis(f[1,1]) for i = 1:5 ecdfplot!(ax, randn(1000)) end f end foo()...
MWE: ``` using RollingFunctions f(x,y) = sum((x.-y).^2) running(f, rand(1000), rand(1000), 10) # works! running(f, rand(2,1000), 10) # error ``` ``` ERROR: UndefVarError: `data` not defined Stacktrace: [1] basic_running(window_fn::typeof(f), data1::Matrix{Float64}, window_span::Int64)...