|
Measures. WeightedMode< T> Method (T[] ,Double[] , Boolean, Boolean)
|
Computes the Mode of the given values.
Namespace:
Accord.Statistics
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntaxpublic static T WeightedMode<T>(
this T[] values,
double[] weights,
bool inPlace = false,
bool alreadySorted = false
)
<ExtensionAttribute>
Public Shared Function WeightedMode(Of T) (
values As T(),
weights As Double(),
Optional inPlace As Boolean = false,
Optional alreadySorted As Boolean = false
) As T
Request Example
View SourceParameters
- values
- Type:T[]
A number array containing the vector values. - weights
- Type:System.Double[]
The number of times each sample should be repeated. - inPlace (Optional)
- Type: System.Boolean
True to perform the operation in place, altering the original input vector. - alreadySorted (Optional)
- Type: System.Boolean
Pass true if the list of values is already sorted.
Type Parameters
- T
Return Value
Type:
TThe most common value in the given data.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also