Module: DunnetTestLib
- Included in:
- Num4MultiCompLib::ParametrixTestLib
- Defined in:
- lib/dunnet.rb
Overview
Dunnet検定
(Apache commoms math3使用)
Instance Method Summary collapse
-
#leftside_test(xi, a) ⇒ Array
Dunnet検定の左側検定.
-
#rightside_test(xi, a) ⇒ Array
Dunnet検定の右側検定.
-
#twoside_test(xi, a) ⇒ Array
Dunnet検定の両側検定.
Instance Method Details
#leftside_test(xi, a) ⇒ Array
Dunnet検定の左側検定
84 85 86 87 |
# File 'lib/dunnet.rb', line 84 def leftside_test(xi, a) ret = @paramTest.leftsideTest(xi.to_java(Java::double[]), a) return ret.to_a end |
#rightside_test(xi, a) ⇒ Array
Dunnet検定の右側検定
56 57 58 59 |
# File 'lib/dunnet.rb', line 56 def rightside_test(xi, a) ret = @paramTest.rightsideTest(xi.to_java(Java::double[]), a) return ret.to_a end |
#twoside_test(xi, a) ⇒ Array
Dunnet検定の両側検定
28 29 30 31 |
# File 'lib/dunnet.rb', line 28 def twoside_test(xi, a) ret = @paramTest.twosideTest(xi.to_java(Java::double[]), a) return ret.to_a end |