Click or drag to resize

DecisionTree.BaseNode Class

Node description class.
Inheritance Hierarchy
System.Object
  FinMath.MachineLearning.DecisionTree.BaseNode
    FinMath.MachineLearning.DecisionTree.CategoricalNode
    FinMath.MachineLearning.DecisionTree.ContinuousNode

Namespace:  FinMath.MachineLearning
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
[SerializableAttribute]
public class BaseNode : IEnumerable<DecisionTree.BaseEdge>, 
	ISerializable, IEnumerable

The DecisionTree.BaseNode type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyBranchProportions
Proportion for each branch.
Public propertyClassList
List of classification values for the tree.
Public propertyClassProbabilities
Class probabilities.
Public propertyIsLeaf
Indicate if the node is a leaf node.
Public propertyParentEdge
Get the parent edge
Public propertyPrediction
This node prediction value.
Top
Methods
  NameDescription
Public methodChop
Cut-off the decision sub-tree from specified node.
Public methodClone
Performs object deep copy.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetEnumerator
Get this node edges enumerator.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetObjectData
The object optimized serialization method.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodReplace
Replace this node in tree by new node.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodAbsoluteMaximum<DecisionTree.BaseEdge>
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndex<DecisionTree.BaseEdge>
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndexOrDefault<DecisionTree.BaseEdge>
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumOrDefault<DecisionTree.BaseEdge>
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimum<DecisionTree.BaseEdge>
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndex<DecisionTree.BaseEdge>
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndexOrDefault<DecisionTree.BaseEdge>
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumOrDefault<DecisionTree.BaseEdge>
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodArithmeticMean<DecisionTree.BaseEdge>
Returns the arithmetic mean of the container's values. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodArithmeticMeanOrDefault<DecisionTree.BaseEdge>
Returns the arithmetic mean of the container's values. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodAutocorrelogram<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Builds autocorrelogram of specified size of container's values. Method will enumerate all lags between zero and specified one inclusively. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodAutocorrelogram<DecisionTree.BaseEdge>(Int32,Double[], Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Builds autocorrelogram of specified size of container's values. Method will enumerate all lags between zero and specified one inclusively. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodAutocorrelogram<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Builds autocorrelogram of specified size of container's values. Method will enumerate all lags between zero and specified one inclusively. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodAutocorrelogram<DecisionTree.BaseEdge>(Int32,Double[], Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Builds autocorrelogram of specified size of container's values. Method will enumerate all lags between zero and specified one inclusively. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCoefficientOfVariation<DecisionTree.BaseEdge>
Returns the coefficient of variation of container's values. http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.)
Public Extension MethodCoefficientOfVariationOrDefault<DecisionTree.BaseEdge>
Returns the coefficient of variation of container's values. http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.)
Public Extension MethodCopyData<DecisionTree.BaseEdge>(IList<Double>, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCopyData<DecisionTree.BaseEdge>(IList<Double>, Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCorrelation<DecisionTree.BaseEdge>
Returns correlation between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Correlation_and_dependence
(Defined by DescriptiveStatistics.)
Public Extension MethodCorrelationOrDefault<DecisionTree.BaseEdge>
Returns correlation between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Correlation_and_dependence
(Defined by DescriptiveStatistics.)
Public Extension MethodCorrelogram<DecisionTree.BaseEdge>(IEnumerable<DecisionTree.BaseEdge>, Int32, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Builds correlogram between values from containers. Method will enum all lags between -lag and +lag. Be careful with result array size it must be at least lag * 2 + 1. The containers must have the same size. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCorrelogram<DecisionTree.BaseEdge>(IEnumerable<DecisionTree.BaseEdge>, Int32,Double[], Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Builds correlogram between values from containers. Method will enum all lags between -lag and +lag. Be careful with result array size it must be at least lag * 2 + 1. The containers must have the same size. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCorrelogram<DecisionTree.BaseEdge>(IEnumerable<DecisionTree.BaseEdge>, Int32, Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Builds correlogram between values from containers. Method will enum all lags between -lag and +lag. Be careful with result array size it must be at least lag * 2 + 1. The containers must have the same size. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCorrelogram<DecisionTree.BaseEdge>(IEnumerable<DecisionTree.BaseEdge>, Int32,Double[], Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Builds correlogram between values from containers. Method will enum all lags between -lag and +lag. Be careful with result array size it must be at least lag * 2 + 1. The containers must have the same size. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCount<DecisionTree.BaseEdge>
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCountOrDefault<DecisionTree.BaseEdge>
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCovariance<DecisionTree.BaseEdge>
Returns population covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovarianceOrDefault<DecisionTree.BaseEdge>
Returns population covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovariancePopulation<DecisionTree.BaseEdge>
Returns population covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovariancePopulationOrDefault<DecisionTree.BaseEdge>
Returns population covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovarianceSample<DecisionTree.BaseEdge>
Returns sample covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovarianceSampleOrDefault<DecisionTree.BaseEdge>
Returns sample covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCumulativeDistribution<DecisionTree.BaseEdge>
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodCumulativeDistributionOrDefault<DecisionTree.BaseEdge>
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodFirstRawMoment<DecisionTree.BaseEdge>
Returns the first raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFirstRawMomentOrDefault<DecisionTree.BaseEdge>
Returns the first raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthCentralMoment<DecisionTree.BaseEdge>
Returns the fourth central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthCentralMomentOrDefault<DecisionTree.BaseEdge>
Returns the fourth central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthRawMoment<DecisionTree.BaseEdge>
Returns the fourth raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthRawMomentOrDefault<DecisionTree.BaseEdge>
Returns the fourth raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodGeometricMean<DecisionTree.BaseEdge>
Returns the geometric mean of the container's values. http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodGeometricMeanOrDefault<DecisionTree.BaseEdge>
Returns the geometric mean of the container's values. http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottom<DecisionTree.BaseEdge>(Int32, DescriptiveStatisticsBase.GetRankDelegate<DecisionTree.BaseEdge>)Overloaded.
Returns given amount of objects with biggest values gotten from specified delegate.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodGetBottom<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottom<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[],Int32[], Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetCentered<DecisionTree.BaseEdge>(Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCentered<DecisionTree.BaseEdge>(IList<Double>, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCentered<DecisionTree.BaseEdge>(Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCentered<DecisionTree.BaseEdge>(IList<Double>, Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredBoundaries<DecisionTree.BaseEdge>(Double, Double, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Store copy of collection. Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredBoundaries<DecisionTree.BaseEdge>(Double, Double, IList<Double>, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Store copy of collection. Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredBoundaries<DecisionTree.BaseEdge>(Double, Double, Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Store copy of collection. Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredBoundaries<DecisionTree.BaseEdge>(Double, Double, IList<Double>, Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Store copy of collection. Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary<DecisionTree.BaseEdge>(Double, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary<DecisionTree.BaseEdge>(Double, IList<Double>, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary<DecisionTree.BaseEdge>(Double, Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary<DecisionTree.BaseEdge>(Double, IList<Double>, Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary<DecisionTree.BaseEdge>(Double, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary<DecisionTree.BaseEdge>(Double, IList<Double>, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary<DecisionTree.BaseEdge>(Double, Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary<DecisionTree.BaseEdge>(Double, IList<Double>, Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardized<DecisionTree.BaseEdge>(Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardized<DecisionTree.BaseEdge>(IList<Double>, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardized<DecisionTree.BaseEdge>(Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardized<DecisionTree.BaseEdge>(IList<Double>, Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetTop<DecisionTree.BaseEdge>(Int32, DescriptiveStatisticsBase.GetRankDelegate<DecisionTree.BaseEdge>)Overloaded.
Returns given amount of objects with smallest values gotten from specified delegate.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodGetTop<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTop<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[],Int32[], Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodHarmonicMean<DecisionTree.BaseEdge>
Returns the harmonic mean of the container's values. http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodHarmonicMeanOrDefault<DecisionTree.BaseEdge>
Returns the harmonic mean of the container's values. http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodKurtosis<DecisionTree.BaseEdge>
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.)
Public Extension MethodKurtosisOrDefault<DecisionTree.BaseEdge>
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Decimal>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Int32>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Int64>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Decimal>>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Int32>>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Int64>>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Decimal>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Decimal>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Int32>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Int32>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Int64>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Int64>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Decimal>>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Decimal>>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Int32>>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Int32>>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Int64>>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Int64>>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Single>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Double>>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Single>>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Single>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Single>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Double>>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Double>>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Single>>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Single>>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge, TResult>(Int32, Func<DecisionTree.BaseEdge, TResult>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge, TResult>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, TResult>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest<DecisionTree.BaseEdge, TResult>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, TResult>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Decimal>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Int32>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Int64>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Decimal>>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Int32>>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Int64>>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Single>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Double>>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Single>>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Decimal>,Int32[])Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Decimal>, IList<Int32>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Int32>,Int32[])Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Int32>, IList<Int32>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Int64>,Int32[])Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Int64>, IList<Int32>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Decimal>>,Int32[])Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Decimal>>, IList<Int32>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Int32>>,Int32[])Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Int32>>, IList<Int32>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Int64>>,Int32[])Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Int64>>, IList<Int32>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Double>,Int32[], Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Double>, IList<Int32>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Single>,Int32[], Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Single>, IList<Int32>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Double>>,Int32[], Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Double>>, IList<Int32>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Single>>,Int32[], Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Single>>, IList<Int32>, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge, TResult>(Int32, Func<DecisionTree.BaseEdge, TResult>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge, TResult>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, TResult>,Int32[])Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices<DecisionTree.BaseEdge, TResult>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, TResult>, IList<Int32>)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodMaximum<DecisionTree.BaseEdge>
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndex<DecisionTree.BaseEdge>
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndexOrDefault<DecisionTree.BaseEdge>
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumOrDefault<DecisionTree.BaseEdge>
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMean<DecisionTree.BaseEdge>
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMeanOrDefault<DecisionTree.BaseEdge>
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMedian<DecisionTree.BaseEdge>
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMedianOrDefault<DecisionTree.BaseEdge>
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrange<DecisionTree.BaseEdge>
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrangeOrDefault<DecisionTree.BaseEdge>
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimum<DecisionTree.BaseEdge>
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndex<DecisionTree.BaseEdge>
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndexOrDefault<DecisionTree.BaseEdge>
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximum<DecisionTree.BaseEdge>
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximumOrDefault<DecisionTree.BaseEdge>
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumOrDefault<DecisionTree.BaseEdge>
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodOrderStatistic<DecisionTree.BaseEdge>
Returns order statistic of specified rank from container's value. http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.)
Public Extension MethodOrderStatisticOrDefault<DecisionTree.BaseEdge>
Returns order statistic of specified rank from container's value. http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.)
Public Extension MethodQuadraticMean<DecisionTree.BaseEdge>
Returns the quadratic mean of the container's values. http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodQuadraticMeanOrDefault<DecisionTree.BaseEdge>
Returns the quadratic mean of the container's values. http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodQuantile<DecisionTree.BaseEdge>
Returns quantile of specified level from container's value. http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.)
Public Extension MethodQuantileOrDefault<DecisionTree.BaseEdge>
Returns quantile of specified level from container's value. http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondCentralMoment<DecisionTree.BaseEdge>
Returns the second central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondCentralMomentOrDefault<DecisionTree.BaseEdge>
Returns the second central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondRawMoment<DecisionTree.BaseEdge>
Returns the second raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondRawMomentOrDefault<DecisionTree.BaseEdge>
Returns the second raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewness<DecisionTree.BaseEdge>
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewnessOrDefault<DecisionTree.BaseEdge>
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Decimal>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Int32>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Int64>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Decimal>>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Int32>>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Int64>>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Decimal>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Decimal>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Int32>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Int32>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Int64>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Int64>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Decimal>>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Decimal>>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Int32>>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Int32>>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Int64>>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Int64>>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Single>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Double>>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Single>>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Single>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Single>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Double>>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Double>>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Single>>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Single>>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge, TResult>(Int32, Func<DecisionTree.BaseEdge, TResult>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge, TResult>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, TResult>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest<DecisionTree.BaseEdge, TResult>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, TResult>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Decimal>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Int32>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Int64>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Decimal>>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Int32>>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Int64>>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Single>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Double>>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(Int32, Func<DecisionTree.BaseEdge, Nullable<Single>>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Decimal>,Int32[])Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Decimal>, IList<Int32>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Int32>,Int32[])Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Int32>, IList<Int32>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Int64>,Int32[])Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Int64>, IList<Int32>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Decimal>>,Int32[])Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Decimal>>, IList<Int32>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Int32>>,Int32[])Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Int32>>, IList<Int32>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Int64>>,Int32[])Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Int64>>, IList<Int32>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Double>,Int32[], Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Double>, IList<Int32>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Single>,Int32[], Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Single>, IList<Int32>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Double>>,Int32[], Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Double>>, IList<Int32>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, Nullable<Single>>,Int32[], Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, Nullable<Single>>, IList<Int32>, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge, TResult>(Int32, Func<DecisionTree.BaseEdge, TResult>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge, TResult>(DecisionTree.BaseEdge[], Func<DecisionTree.BaseEdge, TResult>,Int32[])Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices<DecisionTree.BaseEdge, TResult>(IList<DecisionTree.BaseEdge>, Func<DecisionTree.BaseEdge, TResult>, IList<Int32>)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodStandardDeviation<DecisionTree.BaseEdge>
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationOrDefault<DecisionTree.BaseEdge>
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationPopulation<DecisionTree.BaseEdge>
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationPopulationOrDefault<DecisionTree.BaseEdge>
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationSample<DecisionTree.BaseEdge>
Returns the sample standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationSampleOrDefault<DecisionTree.BaseEdge>
Returns the sample standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodSum<DecisionTree.BaseEdge>
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudes<DecisionTree.BaseEdge>
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudesOrDefault<DecisionTree.BaseEdge>
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumOrDefault<DecisionTree.BaseEdge>
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquares<DecisionTree.BaseEdge>
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquaresOrDefault<DecisionTree.BaseEdge>
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdCentralMoment<DecisionTree.BaseEdge>
Returns the third central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdCentralMomentOrDefault<DecisionTree.BaseEdge>
Returns the third central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdRawMoment<DecisionTree.BaseEdge>
Returns the third raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdRawMomentOrDefault<DecisionTree.BaseEdge>
Returns the third raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodToArray<DecisionTree.BaseEdge>(Func<DecisionTree.BaseEdge, Double>, Boolean)Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodToArray<DecisionTree.BaseEdge>(Func<DecisionTree.BaseEdge, Double>, Boolean, Double)Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodVariance<DecisionTree.BaseEdge>
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceOrDefault<DecisionTree.BaseEdge>
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulation<DecisionTree.BaseEdge>
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulationOrDefault<DecisionTree.BaseEdge>
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSample<DecisionTree.BaseEdge>
Returns the sample variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSampleOrDefault<DecisionTree.BaseEdge>
Returns the sample variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Top
See Also