全部博文(230)
分类:
2010-03-22 17:01:26
############################################## ## gnuplot example -- 绘制上网时间统计图## bilbo ## 2010年3月22日 ############################################## set datafile separator ":" ############################################## ## 2D图名称 ############################################## set title "宽带上网时间统计" offset 0,-1 ############################################## ## x轴显示定义 ############################################## set xlabel "日期" offset 0, -1 set xdata time set timefmt "%Y-%m" set format x "%b\n %Y" set xrange ["2009-1":"2010-4"] set xtics "2009-1", 60*60*24*28, "2010-4" set mxtics 1 ############################################## ## y轴显示定义 ############################################## set ylabel "累计时间(小时)" set format y "%.0f" set yrange ["0":"45"] set ytics "0", 5, "45" set mytics 2 ############################################## ## 绘制图形 ############################################## plot 'data.txt' using 1:(($2*60*60 + $3*60 + $4)/3600) title "上网时间" \ with impulses linecolor rgb "blue" linewidth 8 |