# x-Achse enthält Zeitinformation set xdata time # Zeitformat zur Eingabe set timefmt x "%H:%M:%S" # Zeitformat zur Beschriftung der x-Achse set format x "%H:%M:%S" # set nokey #keine Legende set grid #Gitter anzeigen # set title "LOAD-Wert" #eventuell Überschrift set ylabel 'Temperatur' set xlabel 'Zeit' set y2tics # Zahlen auch auf 2. y-Achse plot "daten_gnuplot.txt" using 1:2 title 'LOAD' with lines axes x1y1, \ "daten_gnuplot.txt" using 1:3 title 'Rand' with lines axes x1y2 set terminal svg size 1200,800 set output "gnuplot.svg" replot