gpt4 book ai didi

c++ - 为什么我的峰度是负数?

转载 作者:行者123 更新时间:2023-11-28 07:17:51 26 4
gpt4 key购买 nike

我正在尝试计算数字 vector 的峰度,预期值为 1.5,但我得到 -1.5。这段代码中有什么我遗漏的吗?提前致谢

using namespace boost::accumulators;
accumulator_set<float, stats<tag::mean, tag::kurtosis > > acc;
std::vector<float> v1 ;
v1.push_back(2);
v1.push_back(3);
v1.push_back(4);
acc = std::for_each( v1.begin(), v1.end(), acc ) ;
std::cout << kurtosis(acc) << std::endl ;

最佳答案

来自 the documentation

The term -3 is added in order to ensure that the normal distribution has zero kurtosis.

您的结果是否定的,因为您的数据的峰度低于高斯分布数据。

关于c++ - 为什么我的峰度是负数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19942520/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com