1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Umweltdatenmessung/Einstellungen
2013-12-27 09:33:23 +01:00

18 lines
549 B
Text

# 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 'LOAD'
set xlabel 'Uhrzeit'
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