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 包
基础教程推荐
- 将 double 转换为 Int,向下舍入 2022-01-01
- doFilter()是在servlet的工作完成之前还是之后执行的? 2022-01-01
- 如何在相机中应用自定义滤镜 [Surfaceview 预览]. 2022-01-01
- 将 Windows 证书导入 Java 2022-01-01
- Maven:无效的目标版本:10 2022-01-01
- 在springboot中如何给mybatis加拦截器 2023-04-29
- JPA惰性列表上的流 2022-01-01
- Java ECDSAwithSHA256 签名长度不一致 2022-01-01
- 控制台应用程序中的 Java 键盘输入解析 2022-01-01
- 在java中使用xpath和selenium解析HTML表格数据 2022-01-01
