2 writes to RawCount
Microsoft.ML.Core (2)
Utilities\SummaryStatistics.cs (2)
113
RawCount
= RawCount + c;
144
RawCount
+= s.RawCount;
8 references to RawCount
Microsoft.ML.Core (8)
Utilities\SummaryStatistics.cs (8)
25
return s.
RawCount
==
RawCount
&& s.Count == Count &&
32
return Hashing.CombinedHash(
RawCount
.GetHashCode(),
64
public double SampleVariance => (M2 / Count) *
RawCount
/ (
RawCount
- 1);
74
public double StandardErrorMean => SampleStdDev / Math.Sqrt(
RawCount
);
113
RawCount =
RawCount
+ c;
144
RawCount += s.
RawCount
;