# 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 key top center set key top rmargin set grid set xrange [0.1:12] set yrange [0:] 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 1, \ "" using 1:8 title col smooth csplines lw 1, \ "" using 1:9 title col smooth csplines lw 1, \ "" using 1:10 title col smooth csplines lw 1, \ "" using 1:11 title col smooth csplines lw 1, \ "" using 1:12 title col smooth csplines lw 1, \ "" using 1:13 title col smooth csplines lw 1, \ "" using 1:14 title col smooth csplines lw 1, \ "" using 1:15 title col smooth csplines lw 1, \ "" using 1:16 title col smooth csplines lw 1, \ "" using 1:17 title col smooth csplines lw 1, \ "" using 1:18 title col smooth csplines lw 1, \ "" using 1:19 title col smooth csplines lw 3 # When only Jan data available use 'lines': # "" using 1:n title col with lines lw 3