# Plot monthly electricity consumption. # See http://gnuplot.sourceforge.net/demo/finance.html set terminal png set output "out/monthly/16WWMonthlyElectricityConsumption.png.tmp" set title "16WW Monthly Electricity Consumption kWh/d (gross, smoothed)" set grid set xrange [0.1:12] #set yrange [0:8] set xtics 1 plot "data/16WWMonthlyElectricityConsumption.dat" \ using 1:2 title col smooth bezier lw 1 lc 1, \ "" using 1:2 notitle with points lc 1, \ "" using 1:3 title col smooth bezier lw 1 lc 2, \ "" using 1:3 notitle with points lc 2, \ "" using 1:4 title col smooth bezier lw 1 lc 3, \ "" using 1:4 notitle with points lc 3, \ "" using 1:5 title col smooth bezier lw 1 lc 4, \ "" using 1:5 notitle with points lc 4, \ "" using 1:6 title col smooth bezier lw 3 lc 5, \ "" using 1:6 notitle with points lc 5, \ "" using 1:7 title col smooth bezier lw 3 lc 6, \ "" using 1:7 notitle with points lc 6 # "" using 1:6 title col with lines lw 3