Double mode(TVec Src)
Mode of all Src vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec | source TVec |
Returns: Double
Remarks:
The mode of a data sample is the element that occurs most often in the collection. For example, the mode of the sample [1, 3, 6, 6, 6, 6, 7, 7, 12, 12, 17] is 6. Given the list of data [1, 1, 2, 4, 4] the mode is not unique, unlike the arithmetic mean.
Examples
using Dew.Math;
using Dew.Stats;
using Dew.Stats.Units;
namespace Dew.Examples
{
private void Example()
{
Vector a = new Vector(0);
a.SetIt(false, new double[] {1,5,2,11,5,3});
double md = Statistics.Mode(a); // md = 5
}
}
Indexed: Double mode(TVec Src, Int32 SrcIndex, Int32 Len)
Mode of Src vector elements [SrcIndex..SrcIndex+Len].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec | source TVec |
| 2 | SrcIndex | Int32 | source start index |
| 3 | Len | Int32 | element count |
Returns: Double