Difference between revisions of "GNUPlot"

From dbawiki
Jump to: navigation, search
(Created page with "* [https://www.cs.hmc.edu/~vrable/gnuplot/using-gnuplot.html Using gnuplot] * [http://www.gnuplotting.org/plotting-data/ gnuplotting] * [http://gnuplot.sourceforge.net/demo_5....")
 
(A powerful way to create a multitude of different graphs)
Line 5: Line 5:
 
* [http://gnuplot.sourceforge.net/demo/ gnuplot demo index on sourceforge]
 
* [http://gnuplot.sourceforge.net/demo/ gnuplot demo index on sourceforge]
 
* [http://gnuplot.sourceforge.net/demo/gantt.html gantt chart demo]
 
* [http://gnuplot.sourceforge.net/demo/gantt.html gantt chart demo]
==A powerful way to create a multitude of different graphs==
 
 
===Treat x axis as date/time (epoch)===
 
===Treat x axis as date/time (epoch)===
 
<pre>
 
<pre>

Revision as of 22:24, 18 September 2016

Treat x axis as date/time (epoch)

set xdata time
set timefmt "%s"
# set xtics 3600
set format x "%H:%M:%S" # or whatever
plot ...