has2k1 / gnuplot_kernel

A Jupyter/IPython kernel for gnuplot
BSD 3-Clause "New" or "Revised" License
84 stars 25 forks source link

gnuplot's data blocks not supported under gnuplot_kernel? #9

Closed esternin closed 6 years ago

esternin commented 7 years ago

In a Jupyter notebook, this produces no output, times out after 30s (while the equivalent works fine directly in gnuplot):

%load_ext gnuplot_kernel
%gnuplot inline pngcairo
%%gnuplot
$DATA <<EOD
# x y
0.5 3
0.7 4
1.5 5
2   6
EOD
plot $DATA
stats $DATA

Similar timeout if the entire kernel is set to gnuplot (not magic extension, but the kernel itself). Installed via pip install --upgrade --no-cache-dir git+https://github.com/has2k1/gnuplot_kernel.git@master

has2k1 commented 7 years ago

Thanks for filing this. When I created the kernel my understanding of gnuplot was only a few days, I did not know about data blocks. And I have not used it at all ever since.

Sorry, I cannot promise when I look into this.

esternin commented 5 years ago

You closed this, and I never had a chance to thank you for fixing this.

THANKS!