2011年11月11日金曜日

groovyとApache Commons Mathで標準偏差を求める

groovyとApache Commons Mathで標準偏差を求めるには、以下のコードを実行します。
@Grab(group='org.apache.commons', module='commons-math', version='2.2')
import org.apache.commons.math.stat.descriptive.*

// 標準偏差を求める
ss = new SummaryStatistics()
[100, 110, 120, 130, 150, 80, 110].each {
  ss.addValue(it)
}
println "standard deviation:" + ss.getStandardDeviation()
動作環境
groovy 1.8.2, JDK6 Update27, Apache Commons Math 2.2

0 件のコメント:

コメントを投稿