plot normal candlesticks and do the clustering by shifting the x-values:
datafile.dat:
5 2 1 4 3 5 4 8 6 4 3 6 5
6 5 4 8 6 4 3 6 5 2 1 4 3
7 4 3 6 5 2 1 4 3 5 4 8 6
8 2 1 4 3 5 4 8 6 4 3 6 5
plot commands:
set xrange [4:9]
set yrange [0:9]
set boxwidth 0.1
plot "datafile.dat" using ($1-0.15):2:3:4:5 with candlesticks whiskerbars, \
"" using 1:6:7:8:9:xtic(1) with candlesticks whiskerbars, \
"" using ($1+0.15):10:11:12:13 with candlesticks whiskerbars
Simon Fleming wrote:
>
> hi all,
>
> Please can you help?
> I am trying to form clusters - like this example,
> http://www.codealias.info/technotes/gnuplot_cluster_histogram_example
> ...but with candlesticks and whiskerbars!
>
> Is this possible, can anyone help me achieve this result? I am also
> defining the set of xtics names corresponding to values in datafiles
>
> Any help/advice appreciated
> all the best
> simon
> ------------------------------------------------------------------------------
> The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
> Pinpoint memory and threading errors before they happen.
> Find and fix more than 250 security defects in the development cycle.
> Locate bottlenecks in serial and parallel code that limit performance.
> http://p.sf.net/sfu/intel-dev2devfeb
> _______________________________________________
> gnuplot-info mailing list
> gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>
>
--
View this message in context: http://old.nabble.com/candlesticks---whiskerbars-in-clusters-tp30902171p30902708.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|