Dr. Ben

Results 2 issues of Dr. Ben

New PyGnuplot version from PyGnuplot import gp f1 = gp() # for each figure a separate instance is created. f1.plot(...) instead of: import PyGnuplot as gp gp.plot(...) Added features: 1....

The easiest way I found is the following: ``` python from PyGnuplot import gp from IPython.display import Image def set_jpeg(g0, out_file): g0.default_term = 'jpeg' g0.file = out_file g0.c('set out "'...

enhancement