Package org.gephi.statistics.plugin

Examples of org.gephi.statistics.plugin.ClusteringCoefficient


    public String getName() {
        return NbBundle.getMessage(ClusteringCoefficientBuilder.class, "ClusteringCoefficent.name");
    }

    public Statistics getStatistics() {
        return new ClusteringCoefficient();
    }
View Full Code Here


        GraphController graphController = Lookup.getDefault().lookup(GraphController.class);
        GraphModel graphModel = graphController.getModel();

        StatisticsModelImpl model = new StatisticsModelImpl();

        ClusteringCoefficient clusteringCoefficient = new ClusteringCoefficient();
        ClusteringCoefficientUI clusteringCoefficientUI = new ClusteringCoefficientUI();
        clusteringCoefficient.execute(graphModel, attributeModel);
        model.addReport(clusteringCoefficient);
        clusteringCoefficientUI.setup(clusteringCoefficient);
        model.addResult(clusteringCoefficientUI);

        GraphDensity graphDensity = new GraphDensity();
View Full Code Here

            graph = graphModel.getUndirectedGraph(window);
        }

        graph.readLock();

        clusteringCoefficientStat = new ClusteringCoefficient();
        clusteringCoefficientStat.setDirected(isDirected);
        clusteringCoefficientStat.triangles(graph);

        //Columns
        if (!averageOnly) {
View Full Code Here

        return NbBundle.getMessage(ClusteringCoefficientBuilder.class, "ClusteringCoefficent.name");
    }

    @Override
    public Statistics getStatistics() {
        return new ClusteringCoefficient();
    }
View Full Code Here

TOP

Related Classes of org.gephi.statistics.plugin.ClusteringCoefficient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.