Uses of Class
net.sf.jdmf.data.output.clustering.Cluster

Packages that use Cluster
net.sf.jdmf.data.input.attribute   
net.sf.jdmf.data.output.clustering   
net.sf.jdmf.visualization.clustering   
 

Uses of Cluster in net.sf.jdmf.data.input.attribute
 

Method parameters in net.sf.jdmf.data.input.attribute with type arguments of type Cluster
 java.util.List<Attribute> AttributeConverter.convertToAttributes(java.util.List<Cluster> clusters, java.util.List<java.lang.String> attributeNameOrder)
          Converts clusters to attributes using the given name order.
 

Uses of Cluster in net.sf.jdmf.data.output.clustering
 

Methods in net.sf.jdmf.data.output.clustering that return types with arguments of type Cluster
 java.util.List<Cluster> ClusteringDataMiningModel.getClusters()
           
 

Methods in net.sf.jdmf.data.output.clustering with parameters of type Cluster
 void ClusteringDataMiningModel.addCluster(Cluster cluster)
           
 

Method parameters in net.sf.jdmf.data.output.clustering with type arguments of type Cluster
 void ClusteringDataMiningModel.setClusters(java.util.List<Cluster> clusters)
           
 

Uses of Cluster in net.sf.jdmf.visualization.clustering
 

Method parameters in net.sf.jdmf.visualization.clustering with type arguments of type Cluster
 org.jfree.chart.JFreeChart ChartGenerator.generatePieChart(java.util.List<Cluster> clusters)
          Generates a pie chart showing the percentage of points falling into each cluster.
 org.jfree.chart.JFreeChart ChartGenerator.generateXYChart(java.util.List<Cluster> clusters, java.lang.Integer firstAttributeIndex, java.lang.String firstAttributeName, java.lang.Integer secondAttributeIndex, java.lang.String secondAttributeName)
          Generates a XY chart visualizing the clusters found by a clustering algorithm.