Class: HypothTest3IF
- Inherits:
-
Object
show all
- Defined in:
- lib/hypothTest3.rb
Instance Method Summary
collapse
-
#chi2DistTest(statistic, df, a) ⇒ Object
-
#fDistTest(statistic, nf, df, a) ⇒ Object
-
#normDistTest(statistic, a) ⇒ Object
-
#populationCorre(r, n, rth0) ⇒ Object
-
#tDistTest(statistic, df, a) ⇒ Object
Instance Method Details
#chi2DistTest(statistic, df, a) ⇒ Object
5
6
7
|
# File 'lib/hypothTest3.rb', line 5
def chi2DistTest(statistic, df, a)
raise NotImplementedError.new("#{self.class}##{__method__} が実装されていません")
end
|
#fDistTest(statistic, nf, df, a) ⇒ Object
11
12
13
|
# File 'lib/hypothTest3.rb', line 11
def fDistTest(statistic, nf, df, a)
raise NotImplementedError.new("#{self.class}##{__method__} が実装されていません")
end
|
#normDistTest(statistic, a) ⇒ Object
8
9
10
|
# File 'lib/hypothTest3.rb', line 8
def normDistTest(statistic, a)
raise NotImplementedError.new("#{self.class}##{__method__} が実装されていません")
end
|
#populationCorre(r, n, rth0) ⇒ Object
14
15
16
|
# File 'lib/hypothTest3.rb', line 14
def populationCorre(r, n, rth0)
raise NotImplementedError.new("#{self.class}##{__method__} が実装されていません")
end
|
#tDistTest(statistic, df, a) ⇒ Object
2
3
4
|
# File 'lib/hypothTest3.rb', line 2
def tDistTest(statistic, df, a)
raise NotImplementedError.new("#{self.class}##{__method__} が実装されていません")
end
|