https://github.com/tkf/vegastreams.jl
"Real-time" plotting with VegaLite.jl and ElectronDisplay.jl
https://github.com/tkf/vegastreams.jl
Last synced: 10 months ago
JSON representation
"Real-time" plotting with VegaLite.jl and ElectronDisplay.jl
- Host: GitHub
- URL: https://github.com/tkf/vegastreams.jl
- Owner: tkf
- License: mit
- Created: 2019-09-25T23:10:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-08T17:26:14.000Z (almost 6 years ago)
- Last Synced: 2025-02-01T22:42:22.661Z (12 months ago)
- Language: Julia
- Homepage:
- Size: 21.5 KB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VegaStreams
[](https://tkf.github.io/VegaStreams.jl/stable)
[](https://tkf.github.io/VegaStreams.jl/dev)
[](https://travis-ci.com/tkf/VegaStreams.jl)
[](https://codecov.io/gh/tkf/VegaStreams.jl)
[](https://coveralls.io/github/tkf/VegaStreams.jl?branch=master)
### Example
```julia
julia> using VegaStreams
using VegaLite
julia> vls = vegastream(@vlplot(:line, x=:x, y=:y));
julia> for (x, y) in enumerate(randn(100))
sleep(0.01)
push!(vls, (x=x, y=y))
end
```