Difference between revisions of "Gnuplot"

From Wikifications
Jump to: navigation, search
(New page: Basic x / y plot of data from a file in the form: x1 y1 x2 y2 x3 y3 set ytic auto set xtic auto set title "iCal Server Queue Depth / Latency" set xlabel "Queue Depth" set ylabel ...)
 
 
Line 10: Line 10:
 
  set xlabel "Queue Depth"
 
  set xlabel "Queue Depth"
 
  set ylabel "Latency"
 
  set ylabel "Latency"
  plot "ical-queues.tx t" using 1:1 title "Queue Depth" with lines
+
  plot "ical-queues.txt" using 1:1 title "Queue Depth" with lines
 
  plot "ical-queues.txt" using 1:2 title "Latency" with lines
 
  plot "ical-queues.txt" using 1:2 title "Latency" with lines

Latest revision as of 10:21, 8 September 2009

Basic x / y plot of data from a file in the form:

x1 y1
x2 y2
x3 y3
set ytic auto
set xtic auto
set title "iCal Server Queue Depth / Latency"
set xlabel "Queue Depth"
set ylabel "Latency"
plot "ical-queues.txt" using 1:1 title "Queue Depth" with lines
plot "ical-queues.txt" using 1:2 title "Latency" with lines