Class: Num4TstStatisticLib::OutlierLib
- Inherits:
-
Object
- Object
- Num4TstStatisticLib::OutlierLib
- Defined in:
- lib/num4tststatistic.rb
Instance Method Summary collapse
-
#errbar(dname, xi) ⇒ void
エラーバー出力.
-
#grubbs(xi, xk) ⇒ double
グラプス・スミルノフの外れ値の検定量.
-
#initialize ⇒ OutlierLib
constructor
A new instance of OutlierLib.
Constructor Details
#initialize ⇒ OutlierLib
Returns a new instance of OutlierLib.
324 325 326 |
# File 'lib/num4tststatistic.rb', line 324 def initialize @outlier = Outlier.getInstance() end |
Instance Method Details
#errbar(dname, xi) ⇒ void
Note:
グラフは、jfreechartを使用
エラーバー出力
354 355 356 |
# File 'lib/num4tststatistic.rb', line 354 def (dname, xi) return @outlier.(dname, xi.to_java(Java::double)) end |
#grubbs(xi, xk) ⇒ double
Note:
外れ値の検定に従う
グラプス・スミルノフの外れ値の検定量
339 340 341 |
# File 'lib/num4tststatistic.rb', line 339 def grubbs(xi, xk) return @outlier.grubbs(xi.to_java(Java::double), xk) end |