Class FeatureTableCSVGeneratorFactory
Object
org.anchoranalysis.feature.io.csv.table.FeatureTableCSVGeneratorFactory
public class FeatureTableCSVGeneratorFactory extends Object
Creates a
FeatureTableCSVGenerator.- Author:
- Owen Feehan
-
Method Summary
Modifier and Type Method Description static FeatureTableCSVGenerator<ResultsVectorList>create(FeatureNameList featureNames, boolean horizontal)Creates either aFeatureTableCSVGeneratorin either horizontal or vertical style.
-
Method Details
-
create
public static FeatureTableCSVGenerator<ResultsVectorList> create(FeatureNameList featureNames, boolean horizontal)Creates either aFeatureTableCSVGeneratorin either horizontal or vertical style.- Parameters:
featureNames- names-of-features that will appear in results.horizontal- if true, horizontal style is used (an entity's results form a row), otherwise vertical style (an entity's results form a column).- Returns:
- a newly created
FeatureTableCSVGeneratorin the above selected style.
-