com.github.chen0040.data.utils.discretizers.AttributeValueDiscretizer 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.discretizers;
import com.github.chen0040.data.frame.DataFrame;
import com.github.chen0040.data.frame.DataRow;
/**
* Created by xschen on 18/8/15.
*/
public interface AttributeValueDiscretizer {
int discretize(double value, String index);
DataRow transform(DataRow tuple);
DataFrame fitAndTransform(DataFrame frame);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy