Class: HypothTest3IF

Inherits:
Object
  • Object
show all
Defined in:
lib/hypothTest3.rb

Instance Method Summary collapse

Instance Method Details

#chi2DistTest(statistic, df, a) ⇒ Object

Raises:

  • (NotImplementedError)


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

Raises:

  • (NotImplementedError)


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

Raises:

  • (NotImplementedError)


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

Raises:

  • (NotImplementedError)


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

Raises:

  • (NotImplementedError)


2
3
4
# File 'lib/hypothTest3.rb', line 2

def tDistTest(statistic, df, a)
    raise NotImplementedError.new("#{self.class}##{__method__} が実装されていません")
end