# 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 key top center set key top rmargin set grid set xrange [0.1:12] #set yrange [0:8] set xtics 1 plot for [i=2:19] "data/16WWMonthlyElectricityConsumption.dat" \ using 1:i title col smooth bezier lc i lt int((i-2)/10), \ for [i=2:19] "data/16WWMonthlyElectricityConsumption.dat" \ using 1:i notitle with points lc i, \ "" using 1:20 title col smooth bezier lc 1 lw 3, \ "" using 1:20 notitle with points lc 1 # "" using 1:6 title col with lines lw 3