statistical graphs in ruby
Posted: Sun Jan 24, 2016 8:52 pm
I guess this may require ruby, because I don't see an easy way to get it.
Basically - I'd like to print two types of graphs.
1) dots with vertical lines (+/-, like tolerance or range from min to max), optionally ended with some markers on min/max tips. So it would eat 3 correlated arrays of data: min values, mid values and max values.Like:
1,3,2,4
5,7,6,8
10,13,12,11
2) colored zone between two point-to-point graphs (min graph and max graph). This one would eat 2-3 correlated arrays of data. 3rd mid array would just graph point to point line (like average data between min and max). Thus the format of an array would be identical to above example.
Anyone played with such stuff?
Basically - I'd like to print two types of graphs.
1) dots with vertical lines (+/-, like tolerance or range from min to max), optionally ended with some markers on min/max tips. So it would eat 3 correlated arrays of data: min values, mid values and max values.Like:
1,3,2,4
5,7,6,8
10,13,12,11
2) colored zone between two point-to-point graphs (min graph and max graph). This one would eat 2-3 correlated arrays of data. 3rd mid array would just graph point to point line (like average data between min and max). Thus the format of an array would be identical to above example.
Anyone played with such stuff?