Initial release of Maemo 5 port of gnuplot
[gnuplot] / demo / candlesticks.dem
1 #
2 # $Id: candlesticks.dem,v 1.4 2005/03/30 06:02:45 sfeam Exp $
3 #
4
5 reset
6 #
7 set xrange [0:11]
8 set yrange [0:10]
9 #
10 set title "candlesticks with open boxes (default)"
11 plot 'candlesticks.dat' using 1:3:2:6:5 with candlesticks
12 #
13 pause -1 "Hit return to continue"
14 #
15 set title "candlesticks with specified boxwidth"
16 set boxwidth 0.2
17 replot
18 #
19 pause -1 "Hit return to continue"
20 #
21 set title "candlesticks with style fill solid"
22 set style fill solid
23 set boxwidth 0.2
24 replot
25 #
26 pause -1 "Hit return to continue"
27 #
28 set title "box-and-whisker plot adding median value as bar"
29 set style fill empty
30 plot 'candlesticks.dat' using 1:3:2:6:5 with candlesticks lt 3 lw 2 title 'Quartiles', \
31      ''                 using 1:4:4:4:4 with candlesticks lt -1 lw 2 notitle
32 #
33 pause -1 "Hit return to continue"
34 #
35 set title "box-and-whisker with median bar and whiskerbars"
36 plot 'candlesticks.dat' using 1:3:2:6:5 with candlesticks lt 3 lw 2 title 'Quartiles' whiskerbars, \
37      ''                 using 1:4:4:4:4 with candlesticks lt -1 lw 2 notitle
38 pause -1 "Hit return to continue"
39 #
40      
41 reset
42