# Plot monthly gas consumption. # See http://gnuplot.sourceforge.net/demo/finance.html set terminal png set output "out/monthly/16WWMonthlyGasConsumption.png.tmp" set title "16WW Monthly Gas Consumption kWh/d" set grid set xrange [0.1:12] #set yrange [0:60] set xtics 1 plot "data/16WWMonthlyGasConsumption.dat" \ using 1:2 title col smooth csplines lw 1, \ "" using 1:3 title col smooth csplines lw 1, \ "" using 1:4 title col smooth csplines lw 1, \ "" using 1:5 title col smooth csplines lw 1, \ "" using 1:6 title col smooth csplines lw 1, \ "" using 1:7 title col smooth csplines lw 3 # When only Jan data available use 'lines': # "" using 1:n title col with lines lw 3