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

Packages that use Histogram
edu.uci.ics.jung.statistics   
 

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

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

Methods in edu.uci.ics.jung.statistics with parameters of type Histogram
static void DegreeDistributions.saveDistribution(Histogram histogram, java.lang.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>