Questions tagged «standard-deviation»

8
列表的标准偏差
我想找到几个(Z)列表的第一,第二,...个数字的均值和标准差。例如,我有 A_rank=[0.8,0.4,1.2,3.7,2.6,5.8] B_rank=[0.1,2.8,3.7,2.6,5,3.4] C_Rank=[1.2,3.4,0.5,0.1,2.5,6.1] # etc (up to Z_rank )... 现在,我要获取的均值和std *_Rank[0],的均值和std *_Rank[1]等 (即:所有(A..Z)_rank列表中第一个数字 的均值和std;来自的第二个数字的均值和std所有(A..Z)_rank列表; 第三个数字的均值和std ...;等等)。


7
LINQ中的标准偏差
LINQ是否对聚合SQL函数STDDEV() (标准偏差)建模? 如果没有,最简单/最佳实践的计算方法是什么? 例: SELECT test_id, AVERAGE(result) avg, STDDEV(result) std FROM tests GROUP BY test_id

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.