I have a paired t file of values generated from my program, and the professor has given us a basic gnuplot script to work from. However, the title, output filename and input data file are all hard-coded in the script.
Is there any way to modify the variables inside the plot file?
for example, the current title is done via
set title "Voting"
and the plot command is executed via
plot 'data-confidence' using 14:3:9:12 notitle with errorbars, \
'data-confidence' using 14:3 notitle with points 2
Is it possible to do something like
gnuplot pairedt.g voting voting.data and have the script execute on the .data file?