com.github.chen0040.data.utils.StdDev Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-data-frame Show documentation
Show all versions of java-data-frame Show documentation
Some common patterns of data frame in Java
The newest version!
package com.github.chen0040.data.utils;
/**
* Created by xschen on 14/8/15.
*/
public class StdDev {
public static double apply(double[] values, double mu){
return Math.sqrt(Variance.apply(values, mu));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy