object GoodnessOfFit_CS
The GoodnessOfFit_CS
companion object provides two discrepancy metrics to capture
the differences between observed 'o' and expected 'o' counts.
- See also
en.wikipedia.org/wiki/G-test
- Alphabetic
- By Inheritance
- GoodnessOfFit_CS
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
type
Metric = (Double, Double) ⇒ Double
Type definition for difference metric
Value Members
-
final
def
pearson(o: Double, e: Double): Double
Metric developed by Pearson and used in standard Chi-Square Test.
Metric developed by Pearson and used in standard Chi-Square Test.
- o
the observed count in the given interval
- e
the expected count in the given interval
-
final
def
sokal(o: Double, e: Double): Double
Metric developed by Sokal and Rohlf and used in G Test.
Metric developed by Sokal and Rohlf and used in G Test.
- o
the observed count in the given interval
- e
the expected count in the given interval