Simple statistics - Java packages for calculating mean, standard deviation, etc(简单统计 - 用于计算平均值、标准差等的 Java 包)
问题描述
您能否推荐一些简单的 Java 统计数据包?
Could you please suggest any simple Java statistics packages?
我不一定需要任何高级的东西.我很惊讶 java.lang.Math 包中似乎没有计算平均值的函数...
I don't necessarily need any of the advanced stuff. I was quite surprised that there does not appear to be a function to calculate the Mean in the java.lang.Math package...
你们用什么来做这个的?
What are you guys using for this?
编辑
关于:
写一个简单的类有多难计算均值和标准的偏差?
How hard is it to write a simple class that calculates means and standard deviations?
嗯,不难.我只是在手工编码后才问这个问题.但是,当我需要这些最简单的功能时,手头没有这些功能,这只会增加我的 Java 挫败感.我不记得用心计算标准差的公式了:)
Well, not hard. I only asked this question after having hand-coded these. But it only added to my Java frustration not to have these simplest functions available at hand when I needed them. I don't remember the formula for calculating stdev by heart :)
推荐答案
Apache Commons Math,具体来说DescriptiveStatistics 和 SummaryStatistics.
这篇关于简单统计 - 用于计算平均值、标准差等的 Java 包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:简单统计 - 用于计算平均值、标准差等的 Java 包
基础教程推荐
- 存储 20 位数字的数据类型 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
