|
MeasuresTruncatedMean Method
|
Computes the truncated (trimmed) mean of the given values.
Namespace:
Accord.Statistics
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static double TruncatedMean(
this double[] values,
double percent,
bool inPlace = false,
bool alreadySorted = false
)
<ExtensionAttribute>
Public Shared Function TruncatedMean (
values As Double(),
percent As Double,
Optional inPlace As Boolean = false,
Optional alreadySorted As Boolean = false
) As Double
Request Example
View SourceParameters
- values
- Type: SystemDouble
A double array containing the vector members. - percent
- Type: SystemDouble
The percentage of observations to drop from the sample. - inPlace (Optional)
- Type: SystemBoolean
Whether to perform operations in place, overwriting the original vector. - alreadySorted (Optional)
- Type: SystemBoolean
A boolean parameter informing if the given values have already been sorted.
Return Value
Type:
DoubleThe mean of 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