VegaLite.jl
VegaLite.jl copied to clipboard
Would it be possible to link data to a plot?
So that when data changes, the plot changes automatically.
The closest thing we have is https://github.com/tkf/VegaStreams.jl, but it might only support adding additional data to existing data? Not sure.
it might only support adding additional data to existing data?
That's what I understood from VegaStreans package. It only provides push!
and append!
functions.
Can you describe your scenario a bit more?
What kind of UI would you want to use for your scenario?
I want to be able to plot simulations as they run, without having to save plots frame by frame and converting them to an animation. Something similar to what this feature of Makie.
I was thinking being able to do:
p = @vlplot(data=df, ...)
# update df
update!(p) # the plot changes