I've a python script that after some computing is a generating two data files formatted as gnuplot input. How do I 'call' gnuplot from python ?
I want to send the following python string as input to gnuplot:
"plot '%s' with lines, '%s' with points;" % (eout,nout)
where 'eout' and 'nout' are the two filenames.
PS: I prefer not to use additional python modules (eg. gnuplot-py), only the standard API.
Thank You