Valentin Kaisermayer

Results 50 issues of Valentin Kaisermayer

The normalized variant of the RBF seems to be wrong. ```julia function normalized_squared_exponential(v, vc, gamma::Number) r = squared_exponential(v, vc, gamma) r ./= (sum(r, dims=2) .+ 1e-8) end ``` Which yields...

See https://quasar.dev/vue-components/table#popup-editing Sry, if this already possible. An old discussion: https://discourse.julialang.org/t/editable-table-using-stipple-ui/71854

enhancement

```julia using Stipple, StippleUI @reactive mutable struct DatePickers init route("/") do html(ui(model), context = @__MODULE__) end up() ``` Changing the date range via the REPL updates the view `model.daterange[] =...

bug

`PlotLayout(yaxis=[PlotLayoutAxis(...)])` has the wrong effect since `xy` is `"x"` per default. Either `PlotLayout` has to reset all `xy` of the `yaxis` to `"y"` or et least not have a default...

It would be nice to have the timeline chart: https://plotly.com/python-api-reference/generated/plotly.express.timeline.html availiable.

A method for changing the time base of an existing `TimeArray` like [Matlabs retime](https://de.mathworks.com/help/matlab/ref/timetable.retime.html) would be helpful.

enhancement

I noticed that the last commit is from January and that there are lot's of open and unanswered issues as well as open PRs. So I was wondering if `TimeSeries.jl`...

In the docs it says: > edit_link::Union{AbstractString, Symbol, Nothing}: Branch, tag or commit that the "Edit on…" link will point to. Defaults to the branch identified by devbranch. If edit_link=:commit,...

Some solvers, e.g. Ipopt, return the dual value of the constraints. It would be nice to not waste this information and return it in the `OptimizationSolution`.

```julia using Dates using GLMakie t = range(DateTime(2020); step=Hour(1), length=1000) y = cumsum(randn(1000)) fig = Figure() ax = Axis(fig[1,1]) lines!(t, y) #

bug
units