Example usage for weka.clusterers HierarchicalClusterer globalInfo

List of usage examples for weka.clusterers HierarchicalClusterer globalInfo

Introduction

In this page you can find the example usage for weka.clusterers HierarchicalClusterer globalInfo.

Prototype

public String globalInfo() 

Source Link

Document

This will return a string describing the clusterer.

Usage

From source file:wekimini.InputGenerator.java

public void selectHiClusters() throws Exception {
    buildDataset();/*from   w ww .  j ava  2 s. c o m*/

    HierarchicalClusterer clusterer = new HierarchicalClusterer();
    clusterer.setLinkType(new SelectedTag(1, HierarchicalClusterer.TAGS_LINK_TYPE));

    clusterer.buildClusterer(dataset);

    logger.log(Level.SEVERE, "EM options: ", clusterer.getOptions());
    logger.log(Level.SEVERE, "EM numCluster tip text: ", clusterer.numClustersTipText());
    logger.log(Level.SEVERE, "EM debug tip text: ", clusterer.debugTipText());
    logger.log(Level.SEVERE, "EM info: ", clusterer.globalInfo());

    int num = clusterer.numberOfClusters();
    String txt = Integer.toString(num);
    logger.log(Level.SEVERE, "EM numberOfClusters: ", txt);

    String text = Integer.toString(numClusters);
    logger.log(Level.SEVERE, "EM numClusters: ", text);
}