Hi,
I am trying to draw box plot for one of my projects. Say I have an array with indexes 260, 360, 589, 760, 1400. Each index contains the count of it's own occurrences. So if the value of the array at index 260 is 50, this means I have 50 of 260s. Now I want to show the distribution of these values. And I will have at least 10 arrays with the same indexing and counts (might be different for different arrays).
For example,
for an array a1, the series could be like: 260,260,260, 360,1400,1400
so in my array a1 the values are: a1[260]=3, a1[360]=1 and so on. I will have similar observations for array a2, a3 and so on.
Now I want to draw box plot for each of the arrays.
Can anybody tell me how to do that in google chart api. People are modifying candlesticks for that, but I don't get it. It would be great to have an working example with code.
Thanks in advance,
Shaiful