博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Apache Common Math Stat
阅读量:6096 次
发布时间:2019-06-20

本文共 1294 字,大约阅读时间需要 4 分钟。

mark

 

DescriptiveStatistics maintains the input data in memory and has the capability of producing "rolling" statistics computed from a "window" consisting of the most recently added values.

SummaryStatistics does not store the input data values in memory, so the statistics included in this aggregate are limited to those that can be computed in one pass through the data without access to the full array of values.

 

如果不需要cache,one pass就可以算出来, 用SummaryStatistics

DescriptiveStatistics 会cache所有数据在memory,用于无法one pass算出来的,支持window和rolling

SummaryStatistics can be aggregated using  This class can be used to concurrently gather statistics for multiple datasets as well as for a combined sample including all of the data.

MultivariateSummaryStatistics is similar to SummaryStatistics but handles n-tuple values instead of scalar values. It can also compute the full covariance matrix for the input data.

Neither DescriptiveStatistics nor SummaryStatistics is thread-safe.  and, respectively, provide thread-safe versions for applications that require concurrent access to statistical aggregates by multiple threads. provides thread-safeMultivariateSummaryStatistics.

There is also a utility class, , that provides static methods for computing statistics directly from double[] arrays.

一些变体,

有可以方便的使用,

转载地址:http://vyzza.baihongyu.com/

你可能感兴趣的文章
表单匹配正则表达式
查看>>
你不知道的Virtual DOM(一):Virtual Dom 介绍
查看>>
CSSModules
查看>>
理解音频焦点 (第 3/3 部分):三个步骤实现音频聚焦
查看>>
小邵教你玩转nodejs之剖析/实现commonJs源码(2)
查看>>
Omi 官方插件系列 - omi-transform 介绍
查看>>
process.argv与命令行工具
查看>>
追溯 React Hot Loader 的实现
查看>>
纳税服务系统九【登陆、权限拦截、页面嵌套】
查看>>
Jenkins 持续集成 Android 项目
查看>>
[译] 一文教你什么是渐进增强,为什么它很重要?
查看>>
SpringData JPA使用经验
查看>>
阿里P7架构师年薪50W,只因做到了这几点
查看>>
2017年 Java 程序员,风光背后的危机
查看>>
5款你想不到的app,快速体验app报告精选集合
查看>>
探索 单个Fragment实现沉浸式,其余Fragment不实现的解决办法
查看>>
Eclipse中启动Maven install报错-Dmaven.multiModuleProjectDirectory system property is
查看>>
Smalidea无源码调试 android 应用
查看>>
COLDFUSION(CVE-2010-2861) 本地包含利用方法
查看>>
插件化知识梳理(9) 资源的动态加载示例及源码分析
查看>>