Class: DecorrTestIF

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

Direct Known Subclasses

DecorrTestLib::UnDecorrTestLib

Instance Method Summary collapse

Instance Method Details

#kendallscorr(x, y, a) ⇒ Object

Raises:

  • (NotImplementedError)


8
9
10
# File 'lib/decorrtest.rb', line 8

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

#pearsoCorrelation(x, y, a) ⇒ Object

Raises:

  • (NotImplementedError)


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

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

#spearmanscorr(x, y, a) ⇒ Object

Raises:

  • (NotImplementedError)


5
6
7
# File 'lib/decorrtest.rb', line 5

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