Contains methods for creating and working with histograms.
Contains methods for creating and working with one and two-dimensional histograms.
| Name | Description |
---|
  | CreateT |
Creates a new histogram.
|
  | CreateEmpty(Int32, Int32) |
Returns an empty histogram using the specified bin arrangement.
|
  | CreateEmptyT(IndexT) |
Returns a histogram of a vector using the specified bin arrangement.
|
  | CreateEmptyT(IListT, SpecialBins) |
Returns an empty histogram using the specified bin arrangement.
|
  | CreateEmptyT(T, T, Int32) |
Returns an empty histogram using the specified bin arrangement.
|
  | CreateHistogram(ICategoricalVector) |
Returns a histogram of the counts for each value in a vector.
|
  | CreateHistogramT(CategoricalVectorT) |
Returns a new histogram of the counts for each value
in a vector.
|
  | CreateHistogramT(CategoricalVectorT, VectorDouble) |
Returns a new histogram of the counts for each value
in a vector.
|
  | CreateHistogramT(IListT, IntervalIndexT) |
Returns a histogram of a vector using the specified bin arrangement.
|
  | CreateHistogramT(IListT, IntervalIndexT, IListDouble) |
Returns a histogram of a vector using the specified bin arrangement.
|
  | CreateHistogramT(IListT, T, T, Int32, SpecialBins) |
Returns a histogram of a vector using the specified bin arrangement.
|
  | CreateHistogramT(VectorT, T, T, Int32, VectorDouble) |
Returns a histogram of a vector using the specified bin arrangement.
|
  | CreateHistogram2D(ICategoricalVector, ICategoricalVector) |
Returns a two-dimensional histogram of the values in two categorical vectors.
|
  | CreateHistogram2D(ICategoricalVector, ICategoricalVector, VectorDouble) |
Returns a two-dimensional histogram of the values in two categorical vectors.
|
  | CreateHistogram2DT, U(VectorT, IntervalIndexT, VectorU, IntervalIndexU) |
Returns a two-dimensional histogram of the values in two vectors.
|
  | CreateHistogram2DT, U(VectorT, IntervalIndexT, VectorU, IntervalIndexU, VectorDouble) |
Returns a two-dimensional histogram of the values in two vectors.
|
  | FindBinT |
Finds the interval that contains the given value.
|
  | GetBoundsT |
Gets an array containing the bounds of the bins in a Histogram.
|
  | IncrementT(HistogramT, T) |
Increments a bin of a histogram by 1.
|
  | IncrementT(HistogramIntervalT, T) |
Increments the bin of a histogram that contains the specified value by 1.
|
  | IncrementT(HistogramT, T, Double) |
Increments a bin of a histogram by the specified amount.
|
  | IncrementT(HistogramIntervalT, T, Double) |
Increments a bin of a histogram whose range contains
a value by the specified amount.
|
  | TabulateT(HistogramT, IEnumerableT) |
Enters data from a sequence of values into a histogram.
|
  | TabulateT(HistogramIntervalT, IEnumerableT) |
Enters data from a sequence of values into a histogram.
|
  | TabulateT(HistogramT, IListT, IListDouble) |
Enters data from a list of values into a histogram using the specified weights.
|
  | TabulateT(HistogramIntervalT, IListT, IListDouble) |
Enters data from a list of values into a histogram using the specified weights.
|
  | TryFindBinT |
Tries to find the interval that contains the given value.
|