您能否推荐一些简单的 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 包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
如何检测 32 位 int 上的整数溢出?How can I detect integer overflow on 32 bits int?(如何检测 32 位 int 上的整数溢出?)
return 语句之前的局部变量,这有关系吗?Local variables before return statements, does it matter?(return 语句之前的局部变量,这有关系吗?)
如何将整数转换为整数?How to convert Integer to int?(如何将整数转换为整数?)
如何在给定范围内创建一个随机打乱数字的 intHow do I create an int array with randomly shuffled numbers in a given range(如何在给定范围内创建一个随机打乱数字的 int 数组)
java的行为不一致==Inconsistent behavior on java#39;s ==(java的行为不一致==)
为什么 Java 能够将 0xff000000 存储为 int?Why is Java able to store 0xff000000 as an int?(为什么 Java 能够将 0xff000000 存储为 int?)