Alexander Plavin

Results 201 issues of Alexander Plavin

This is IMO quite unintuitive and confusing to read: ```julia julia> s = Base.AnnotatedString("this is an example annotated string", [(1:18, :A => 111), (12:28, :B => 222), (18:35, :C =>...

domain:strings

MWE: ```julia using Makie S = Makie.SpecApi data = Observable(rand(10)) # observable plotspec and gridlayout: pspec = @lift Makie.to_plotspec(Scatter, ($data,)) gl = @lift S.GridLayout([S.Axis(plots=[$pspec])]) # plot it and any other...

bug

```julia julia> using GLMakie julia> scatter(rand(10^5), marker=FastPixel()) ``` gives an empty plot: ![image](https://github.com/user-attachments/assets/ec86dea6-ad0c-4e84-806a-a67c9981cf75) While it certainly worked before. - [x] what version of Makie are you running? (`]st -m Makie`)...

GLMakie
regression
rendering
scatter
macOS

Currently, `lift(f, x)` only works if `x` is an observable, but errors _(or does a completely different thing, because `lift` happens to be `=== map`)_ for regular `x` values. But...

enhancement
maybe wontfix
Makie
Observables

When using an observable in `contour`, and updating the observable, the plotted contours often (not always) disappear – leaving a blank axis. MWE short script: ```julia using WGLMakie fig =...

bug
WGLMakie
Observables
maybe outdated

I’m trying to plot a 2d array with both positive an negative values, using a “symlog” colorscale in Makie. This is what I get, looks weird – I cannot make...

bug
(log) scale
transformation
Legend & Colorbar

Now, point conversion also uses quantiles by default (as rangebars and band did). Before: ![image](https://github.com/user-attachments/assets/a427b44e-1f6e-4ca1-b7bd-1ebd1354adc9) After: ![image](https://github.com/user-attachments/assets/588f5d28-04fc-410c-b4ad-d8ab8c860733) Also, added options to request pmean + pstd plotting instead of pquantiles: `band(...,...

There's no reason for a package to have Requires.jl as a strong dep on Julia 1.9+. Would be nice for Aqua to check for that.

new test

Currently, the predicate (`==` or another) is simply propagated and used to compare all parts of the object. It would be useful to also support stuff like `whynot(issetequal, a, b)`...