org.datavec.dataframe.mapping.NumericMapUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datavec-dataframe Show documentation
Show all versions of datavec-dataframe Show documentation
High-performance Java Dataframe with integrated columnar storage (fork of tablesaw)
package org.datavec.dataframe.mapping;
import org.apache.commons.math3.stat.StatUtils;
/**
*
*/
public class NumericMapUtils {
public double[] normalize(double[] data) {
return StatUtils.normalize(data);
}
}