modified: myjupyterlab.sh
[GalaxyCodeBases.git] / tools / gc_dep_plot / candlesticks.dem
blobde28d5c90d2012569665692e3ee03d8fe456e411
2 # $Id: candlesticks.dem,v 1.5 2008/05/31 05:19:01 sfeam Exp $
5 reset
7 set xrange [0:11]
8 set yrange [0:10]
10 set title "candlesticks with open boxes (default)"
11 plot 'candlesticks.dat' using 1:3:2:6:5 with candlesticks
13 pause -1 "Hit return to continue"
15 set title "candlesticks with specified boxwidth"
16 set boxwidth 0.2
17 replot
19 pause -1 "Hit return to continue"
21 set title "candlesticks with style fill solid"
22 set style fill solid
23 set boxwidth 0.2
24 replot
26 pause -1 "Hit return to continue"
28 set title "candlesticks showing both states of open/close"
29 set style fill empty
30 set boxwidth 0.2
31 plot 'candlesticks.dat' using 1:(int($0)%3?$3:$5):2:6:(int($0)%3?$5:$3) with candlesticks title "open < close", \
32 NaN with boxes lt 1 fs solid 1 title "close < open"
34 pause -1 "Hit return to continue"
36 set title "box-and-whisker plot adding median value as bar"
37 set style fill empty
38 plot 'candlesticks.dat' using 1:3:2:6:5 with candlesticks lt 3 lw 2 title 'Quartiles', \
39      ''                 using 1:4:4:4:4 with candlesticks lt -1 lw 2 notitle
41 pause -1 "Hit return to continue"
43 set title "box-and-whisker with median bar and whiskerbars"
44 plot 'candlesticks.dat' using 1:3:2:6:5 with candlesticks lt 3 lw 2 title 'Quartiles' whiskerbars, \
45      ''                 using 1:4:4:4:4 with candlesticks lt -1 lw 2 notitle
46 pause -1 "Hit return to continue"
48      
49 reset