Class: Num4TstStatistic2Lib::NonParametrixTestLib
- Inherits:
-
Object
- Object
- Num4TstStatistic2Lib::NonParametrixTestLib
- Defined in:
- lib/num4tststatistic2.rb
Instance Method Summary collapse
-
#initialize(hypothTest3) ⇒ NonParametrixTestLib
constructor
A new instance of NonParametrixTestLib.
-
#ks2test(xi1, xi2, a) ⇒ boolean
コルモゴルフ・スミルノフ検定(2標本).
-
#utest(x, y, a) ⇒ boolean
マン・ホイットニーのU検定.
-
#wilcoxontest(x, y, a) ⇒ boolean
ウィルコクス符号付き順位検定.
Constructor Details
#initialize(hypothTest3) ⇒ NonParametrixTestLib
Returns a new instance of NonParametrixTestLib.
208 209 210 211 |
# File 'lib/num4tststatistic2.rb', line 208 def initialize(hypothTest3) @hypothTest3 = hypothTest3 @nonParaTest = Num4TstStatisticLib::NonParametrixTestLib.new end |
Instance Method Details
#ks2test(xi1, xi2, a) ⇒ boolean
コルモゴルフ・スミルノフ検定(2標本)
262 263 264 |
# File 'lib/num4tststatistic2.rb', line 262 def ks2test(xi1, xi2, a) return @nonParaTest.ks2test(xi1, xi2, a) end |
#utest(x, y, a) ⇒ boolean
マン・ホイットニーのU検定
226 227 228 229 |
# File 'lib/num4tststatistic2.rb', line 226 def utest(x, y, a) statistic = @nonParaTest.utest(x, y) return @hypothTest3.normDistTest(statistic, a) end |
#wilcoxontest(x, y, a) ⇒ boolean
ウィルコクス符号付き順位検定
244 245 246 247 |
# File 'lib/num4tststatistic2.rb', line 244 def wilcoxon(x, y, a) statistic = @nonParaTest.wilcoxon(x, y) return @hypothTest3.normDistTest(statistic, a) end |