Uses of Class
edu.uci.ics.jung.statistics.Histogram

Packages that use Histogram
edu.uci.ics.jung.statistics Provides a set of statistical tools for analyzing graphs. 
 

Uses of Histogram in edu.uci.ics.jung.statistics
 

Methods in edu.uci.ics.jung.statistics that return Histogram
static Histogram GraphStatistics.createHistogram(DoubleArrayList values, double min, int numBins, double binWidth)
          Creates a histogram from a sequence of doubles
static Histogram DegreeDistributions.getIndegreeHistogram(Set vertices, double min, double max, int numBins)
          Generates a histogram of the indegree distribution for a set of vertices
static Histogram DegreeDistributions.getOutdegreeHistogram(Set vertices, double min, double max, int numBins)
          Generates a histogram of the outdegree distribution for a set of vertices
 

Methods in edu.uci.ics.jung.statistics with parameters of type Histogram
static void DegreeDistributions.saveDistribution(Histogram histogram, String file)
          Saves the empirical degree distribution to a file in the ascii flat file where each line has the following format: <# of vertices with this degree>