Class: Num4HypothTestLib::DecorrTestLib
- Inherits:
-
Object
- Object
- Num4HypothTestLib::DecorrTestLib
- Defined in:
- lib/num4hypothtst.rb
Overview
無相関の検定
Instance Method Summary collapse
-
#initialize ⇒ DecorrTestLib
constructor
A new instance of DecorrTestLib.
-
#twoSideTest(r, n, a) ⇒ boolean
両側検定.
Constructor Details
#initialize ⇒ DecorrTestLib
Returns a new instance of DecorrTestLib.
221 222 223 |
# File 'lib/num4hypothtst.rb', line 221 def initialize @hypothTest = DecorrTest.getInstance() end |
Instance Method Details
#twoSideTest(r, n, a) ⇒ boolean
両側検定
231 232 233 |
# File 'lib/num4hypothtst.rb', line 231 def twoSideTest(r, n, a) return @hypothTest.twoSideTest(r, n, a) end |