delphi - System.Math.MomentSkewKurtosis 中的 Moment 3 和 Moment 4 到底是什么

标签 delphi math statistics freepascal

System.Math.MomentSkewKurtosis 声明为

procedure MomentSkewKurtosis(const Data: array of Double; var M1, M2, M3, M4, Skew, Kurtosis: Extended);

并返回 M1、M2、M3、M4、偏斜、峰度,其中

M1 - 算术平均值

M2 - 总体方差

偏度 - 偏度

峰度就是峰度

但是 M3 和 M4 到底代表什么。

Delphi Berlin http://docwiki.embarcadero.com/Libraries/Berlin/en/System.Math.MomentSkewKurtosis 中的文档 和自由帕斯卡 http://www.freepascal.org/docs-html/rtl/math/momentskewkurtosis.html很模糊。

最佳答案

M3M4(三阶矩和四阶矩)视为辅助变量,以计算偏斜和峰度(从源中提取):

MomentSkewKurtosis: Calculates the core factors of statistical analysis: the first four moments plus the coefficients of skewness and kurtosis.

  • M1 is the Mean.
  • M2 is the Variance.
  • Skew reflects symmetry of distribution: M3 / (M2**(3/2))
  • Kurtosis reflects flatness of distribution: M4 / Sqr(M2)

关于delphi - System.Math.MomentSkewKurtosis 中的 Moment 3 和 Moment 4 到底是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41433827/

相关文章:

delphi - 使用 StretchDIBits 使用 Delphi 6 处理条形码图像 - 输出中缺少条形线

delphi - 设置Label和StaticText Color属性问题-Delphi 2009

algorithm - 计算具有整数边和给定斜边的直角三角形

java - 调整屏幕上绘制的图像的大小,而不更改 RGB 像素阵列的大小

python - scipy.stats.norm.pdf 用于在 python 中计算 p 值

algorithm - 给定一个真正的随机数生成器,每次调用输出 1 或 0,你如何使用它从任意范围中选择一个数字?

arrays - Delphi-如何从字符串数组创建JSON数组?

android - 如何使用 Delphi XE5 在 Android 上访问 OpenGL 渲染上下文?

javascript - JSON 字符串中的数学方程式

python - Pandas 基于三个不同的列组合并添加签名来整合独特的元素