brayniac / histogram

rust histogram and percentile stats
Apache License 2.0
46 stars 4 forks source link

Median and median-absolute-deviation results #50

Open holtgrewe opened 6 years ago

holtgrewe commented 6 years ago

Would it be possible to add these statistics? They are generally more stable than mean and stddev...

brayniac commented 6 years ago

Median is accessible as the p50 histogram.percentile(50.0). Definitely possible to add an alias for that. MAD looks like it will be fairly easy to implement as well.