Histogram Class
            Contains methods for creating and working with histograms.
            
Definition
Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
    C#
    
 
 
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
public static class Histogram- Inheritance
- Object → Histogram
Methods
| Create<T> | Creates a new histogram. | 
| Create | Returns an empty histogram using the specified bin arrangement. | 
| Create | Returns a histogram of a vector using the specified bin arrangement. | 
| Create | Returns an empty histogram using the specified bin arrangement. | 
| Create | Returns an empty histogram using the specified bin arrangement. | 
| Create | Returns a histogram of the counts for each value in a vector. | 
| Create | Returns a new histogram of the counts for each value in a vector. | 
| Create | Returns a new histogram of the counts for each value in a vector. | 
| Create | Returns a histogram of a vector using the specified bin arrangement. | 
| Create | Returns a histogram of a vector using the specified bin arrangement. | 
| Create | Returns a histogram of a vector using the specified bin arrangement. | 
| Create | Returns a histogram of a vector using the specified bin arrangement. | 
| Create | Returns a two-dimensional histogram of the values in two categorical vectors. | 
| Create | Returns a two-dimensional histogram of the values in two categorical vectors. | 
| Create | Returns a two-dimensional histogram of the values in two vectors. | 
| Create | Returns a two-dimensional histogram of the values in two vectors. | 
| Find | Finds the interval that contains the given value. | 
| Get | Gets an array containing the bounds of the bins in a Histogram. | 
| Increment<T>(Histogram<T>, T) | Increments a bin of a histogram by 1. | 
| Increment<T>(Histogram<Interval<T>>, T) | Increments the bin of a histogram that contains the specified value by 1. | 
| Increment<T>(Histogram<T>, T, Double) | Increments a bin of a histogram by the specified amount. | 
| Increment<T>(Histogram<Interval<T>>, T, Double) | Increments a bin of a histogram whose range contains a value by the specified amount. | 
| Tabulate<T>(Histogram<T>, IEnumerable<T>) | Enters data from a sequence of values into a histogram. | 
| Tabulate<T>(Histogram<Interval<T>>, IEnumerable<T>) | Enters data from a sequence of values into a histogram. | 
| Tabulate<T>(Histogram<T>, IList<T>, IList<Double>) | Enters data from a list of values into a histogram using the specified weights. | 
| Tabulate<T>(Histogram<Interval<T>>, IList<T>, IList<Double>) | Enters data from a list of values into a histogram using the specified weights. | 
| Try | Tries to find the interval that contains the given value. |