ElectronDisplay.jl
ElectronDisplay.jl copied to clipboard
An Electron.jl based figure and table display.
This pull request changes the compat entry for the `Electron` package from `0.2, 0.3, 0.4, 1, 2, 3.0` to `0.2, 0.3, 0.4, 1, 2, 3.0, 4`. This keeps the compat...
Installed on ZSH shell using HomeBrew, on a device using the M1 chip. Below is the command run with subsequent error output: julia> Pkg.precompile() Precompiling project... ✗ Electron ✗ ElectronDisplay...
#This works: ``` using VegaLite, VegaDatasets, ElectronDisplay dataset("cars") |> @vlplot(:point, x=:Acceleration, y=:Miles_per_Gallon, color=:Origin) ``` #But this does not work: ``` using DataFrames, ElectronDisplay df = DataFrame(a=rand(100), b=rand(100), c=rand(100)); electrondisplay(df) ```...
Sorry other question: would it be possible to 1. work out whether there are any windows open currently 2. close some/all of those windows from julia (maybe something like `electronclose(;windowsid=[:win1,...
Let's say in a session you want some output: ```using ElectronDisplay # easy as Apple Pie``` Then, you don't. There is no way to stop the output going to ElectronDisplay....
This can be useful in, e.g., `qtconsole`, where plots are by default inlined, and using `popdisplay()` doesn't seem to remove the inline display.
The window with the electrondisplay tables appears empty in mac MWE ```julia df = DataFrame(a=rand(100), b=rand(100), c=rand(100)); electrondisplay(df) ```` 
Similar to #83, I'm not sure whether this considere a VegaLite.jl bug or EletronDisplay.jl bug. Please move this issue to VegaLite.jl if you think it is more suitably hosted there....
I tried this package to alleviate the problems I had with VSCode's internal plot pane. I really like having the second window, but big plots (sometimes I create large overviews...