data.Transformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-timeseries Show documentation
Show all versions of java-timeseries Show documentation
Time Series Analysis in Java
The newest version!
package data;
/**
* Specifies a transformation to be applied to a set of data.
*
* @author Jacob Rachiele
*/
enum Transformation {
/**
* The natural logarithm.
*/
LOG, /**
* The square root.
*/
SQRT
}