I am trying to plot some data using R. The strange thing is when I plot on one PC, the plots come out with some problems (line types do not seem to change as expected, etc.). but when I run the exact same script on another PC, everything seem to work!
In order to investigate this further, I used Gnuplot on both PC and the problem persisted. I believe now the problem is in the first PC. I uninstalled and installed the graphics drivers and updated my windows but the problem persisted.
What could be the reason of this? I have not idea what details are relevant in this case. Please feel free to ask.
I really think the code is irrelevant since both R and Gnuplot actually work on one of the machines. But just for the heck of it here is the Gnuplot code:
set autoscale
unset log # remove any log-scaling
unset label # remove any previous labels
set xtic auto # set xtics automatically
set ytic auto # set ytics automatically
set title ""
set xlabel "Epoch"
set ylabel "Error"
set datafile separator ","
set terminal pdf
set output "ALL.pdf"
plot "in.csv" using 4:6 title 'IN' with lines lt -1, \
"out.csv" using 4:6 title 'OUT' with lines lt 0, \
"both.csv" using 4:6 title 'BOTH' with lines lt 1