Subject: Re: [Boost-users] Histogram
From: David Doria (daviddoria_at_[hidden])
Date: 2010-04-29 08:49:43


On Thu, Apr 29, 2010 at 7:48 AM, Paul A. Bristow
<pbristow_at_[hidden]> wrote:
> From: boost-users-bounces_at_[hidden] [mailto:boost-users-bounces_at_[hidden]] On Behalf Of Arman Khalatyan
> Sent: Thursday, April 29, 2010 10:58 AM
> To: boost-users_at_[hidden]
> Subject: Re: [Boost-users] Histogram
>
>> Paul,thanks for reminding SVG stl library, I did not knew that IE does not support SVG:)
>
> But with the Adobe addin (still widely available for download but not from Adobe), it does – and IE9 promises full
> support at last (which means I might resume work on this).
>
> (And you can also easily use Inkscape to convert to png if you prefer that).
>
>> are there plans to add Latex formatting for the Greek/Math symbols for titles and axises? that will
> be useful feature,at least for me:)
>
> You can already even more easily do this (at least for single line labels) using Unicode – there are several examples of
> this in the sandbox.
>
> Finally sub and subscript support for Mozilla Firefox is promised soon.  This is a must-have for units labels of course.
>
> Paul
>
>
> ---
> Paul A. Bristow
> Prizet Farmhouse
> Kendal, UK   LA8 8AB
> +44 1539 561830, mobile +44 7714330204
> pbristow_at_[hidden]
>
>
>
> _______________________________________________
> Boost-users mailing list
> Boost-users_at_[hidden]
> http://listarchives.boost.org/mailman/listinfo.cgi/boost-users
>

Thanks Arman, though I'm still a bit confused. If you can push as much
data as you want into the acc:

acc( 1.2, covariate1 = 12 );
acc( 2.3, covariate1 = -23 );
acc( 3.4, covariate1 = 34 );
acc( 4.5, covariate1 = -45 );

Here 4 entries were made even though the cache size was 2. If all of
the statistics are updated on the fly, then why would you need to
store ANY?

Thanks,

David