2013-08-29 13:39:43 -04:00
|
|
|
set terminal pngcairo size 1024,768
|
|
|
|
set termopt dashed
|
2013-08-28 14:16:49 -04:00
|
|
|
set key above horizontal autotitle columnheader
|
|
|
|
set bars 5.0
|
2013-08-30 09:03:22 -04:00
|
|
|
set style fill transparent pattern 4 border -1
|
2013-08-28 13:56:10 -04:00
|
|
|
set xlabel "Date"
|
2013-08-29 13:03:27 -04:00
|
|
|
set ylabel "Hours"
|
2013-08-28 13:56:10 -04:00
|
|
|
set grid y
|
2013-08-30 09:35:02 -04:00
|
|
|
set offsets 1, 1, 0, 0
|
2013-08-28 14:16:49 -04:00
|
|
|
set xtics rotate by -45
|
2013-08-30 09:03:22 -04:00
|
|
|
|
|
|
|
plot "tasktime.dat" using 1:6:6:7:7:xtic(2) title 'Overlap Time Interval' \
|
|
|
|
with candlesticks whiskerbars 0.5 lt 2 lc rgb "#55ee55", \
|
|
|
|
"tasktime.dat" using 1:3:3:4:4:xtic(2) title 'Man Time Interval' \
|
|
|
|
with candlesticks whiskerbars 0.5 lt 1 lc rgb "#ee5555", \
|
|
|
|
"tasktime.dat" using 1:8 title 'Overlap Mean' with lines lt 2 lc rgb "black", \
|
2013-08-29 13:39:43 -04:00
|
|
|
"tasktime.dat" using 1:5 title 'Man-Hour Mean' with lines lc rgb "black" lt 1
|