Class: DecorrTestIF
- Inherits:
-
Object
show all
- Defined in:
- lib/decorrtest.rb
Instance Method Summary
collapse
Instance Method Details
#kendallscorr(x, y, a) ⇒ Object
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
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
5
6
7
|
# File 'lib/decorrtest.rb', line 5
def spearmanscorr(x, y, a)
raise NotImplementedError.new("#{self.class}##{__method__} が実装されていません")
end
|