2 writes to Count
Microsoft.ML.Core (2)
Utilities\SummaryStatistics.cs (2)
112Count = temp; 142Count += s.Count;
24 references to Count
Microsoft.ML.Core (24)
Utilities\SummaryStatistics.cs (24)
25return s.RawCount == RawCount && s.Count == Count && 33Count, Mean, M2, Min, Max, NonzeroCount); 64public double SampleVariance => (M2 / Count) * RawCount / (RawCount - 1); 89Count, Mean, SampleStdDev); 103double temp = w + Count; 108double term1 = w * delta * deltaN * Count; 110M2 += Count * delta * r; 136double na = Count; 137double nb = s.Count; 142Count += s.Count; 218public double Skewness => Math.Sqrt(Count) * _m3 / Math.Pow(M2, 1.5); 223public double Kurtosis => Count * _m4 / (M2 * M2) - 3; 239double n = Count; 268double n = Count; 309Count, Mean, SampleStdDev, Skewness, Kurtosis, SkewnessZ, KurtosisZ, OmnibusK2); 323double temp = w + Count; 328double term1 = w * delta * deltaN * Count; 330_m4 += term1 * deltaN2 * (Count * Count - Count * w + w * w) 333_m3 += term1 * deltaN * (Count - w) - 3 * w * deltaN * M2; 348double na = Count; 349double nb = s.Count;