我有Profile
对象的 ArrayList。Profile
具有age
, gender
,country
等属性
java中是否有任何库可以轻松提供描述性统计数据,如女性资料数量、男性资料数量、美国女性资料数量和其他复杂报告。
使用的环境是 Google App Engine。
谢谢
我有Profile
对象的 ArrayList。Profile
具有age
, gender
,country
等属性
java中是否有任何库可以轻松提供描述性统计数据,如女性资料数量、男性资料数量、美国女性资料数量和其他复杂报告。
使用的环境是 Google App Engine。
谢谢
您可以在 apache commons 数学中使用描述性统计数据,例如
// Get a DescriptiveStatistics instance
DescriptiveStatistics stats = new DescriptiveStatistics();
// Add the data from the array
for( int i = 0; i < inputArray.length; i++) {
stats.addValue(inputArray[i]);
}
// Compute some statistics
double mean = stats.getMean();
double std = stats.getStandardDeviation();
您需要将性别/国家信息添加到 commons math 提供的 descriptiveStatistics 中。希望能帮助到你。