I have python script which has an input arguments of min and max of y range and I want to plot the graph accordingly
test.py -m miny -i maxy
inside the python script gnuplotcmds.append('set yrange [miny:maxy]')
my question is , how can i use variable limits in the gnuplot command as when running this line it always read miny and maxy as strings not variables ?