質問

Using Apache Commons Math, how do I get the median from a series of numbers?

The Commons Math User Guide says DescriptiveStatistics supports median, yet the JavaDocs for DescriptiveStatistics makes no mention of it. It does mention geometric mean, is this the same thing as median?

I do see getPercentile(double). Is getPercentile(50) the same as median?

役に立ちましたか?

解決

DescriptiveStatistics.getPercentile

The 50th percentile is, by definition, the median.

他のヒント

Apache Commons Math is like a hurricane, so one has to check for the version he is going to mention. I am using the v3.6.1 now, and it includes Median (a Percentile override with fixed quantile = 50) and Percentile classes.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top