Click or drag to resize

DecisionTreeCategoricalNode Class

Categorical node description class.
Inheritance Hierarchy
SystemObject
  FinMath.MachineLearningDecisionTreeBaseNode
    FinMath.MachineLearningDecisionTreeCategoricalNode

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

The DecisionTreeCategoricalNode type exposes the following members.

Constructors
Properties
Methods
  NameDescription
Public methodChop
Cut-off the decision sub-tree from specified node.
(Inherited from DecisionTreeBaseNode.)
Public methodClone
Performs object deep copy.
(Overrides DecisionTreeBaseNodeClone.)
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 methodGraft
Graft sub-tree as this node sub-nodes.
Public methodReplace
Replace this node in tree by new node.
(Inherited from DecisionTreeBaseNode.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodAbsoluteMaximumDecisionTreeCategoricalEdge
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndexDecisionTreeCategoricalEdge
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndexOrDefaultDecisionTreeCategoricalEdge
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumOrDefaultDecisionTreeCategoricalEdge
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumDecisionTreeCategoricalEdge
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndexDecisionTreeCategoricalEdge
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndexOrDefaultDecisionTreeCategoricalEdge
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumOrDefaultDecisionTreeCategoricalEdge
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodArithmeticMeanDecisionTreeCategoricalEdge
Returns the arithmetic mean of the container's values. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodArithmeticMeanOrDefaultDecisionTreeCategoricalEdge
Returns the arithmetic mean of the container's values. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodAutocorrelogramDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, 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 MethodAutocorrelogramDecisionTreeCategoricalEdge(Int32, Double, FuncDecisionTreeCategoricalEdge, 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 MethodAutocorrelogramDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, 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 MethodAutocorrelogramDecisionTreeCategoricalEdge(Int32, Double, FuncDecisionTreeCategoricalEdge, 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 MethodCoefficientOfVariationDecisionTreeCategoricalEdge
Returns the coefficient of variation of container's values. http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.)
Public Extension MethodCoefficientOfVariationOrDefaultDecisionTreeCategoricalEdge
Returns the coefficient of variation of container's values. http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.)
Public Extension MethodCopyDataDecisionTreeCategoricalEdge(IListDouble, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCopyDataDecisionTreeCategoricalEdge(IListDouble, FuncDecisionTreeCategoricalEdge, Double, Boolean, Double)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCorrelationDecisionTreeCategoricalEdge
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 MethodCorrelationOrDefaultDecisionTreeCategoricalEdge
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 MethodCorrelogramDecisionTreeCategoricalEdge(IEnumerableDecisionTreeCategoricalEdge, Int32, FuncDecisionTreeCategoricalEdge, 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 MethodCorrelogramDecisionTreeCategoricalEdge(IEnumerableDecisionTreeCategoricalEdge, Int32, Double, FuncDecisionTreeCategoricalEdge, 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 MethodCorrelogramDecisionTreeCategoricalEdge(IEnumerableDecisionTreeCategoricalEdge, Int32, FuncDecisionTreeCategoricalEdge, 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 MethodCorrelogramDecisionTreeCategoricalEdge(IEnumerableDecisionTreeCategoricalEdge, Int32, Double, FuncDecisionTreeCategoricalEdge, 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 MethodCountDecisionTreeCategoricalEdge
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCountOrDefaultDecisionTreeCategoricalEdge
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCovarianceDecisionTreeCategoricalEdge
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 MethodCovarianceOrDefaultDecisionTreeCategoricalEdge
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 MethodCovariancePopulationDecisionTreeCategoricalEdge
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 MethodCovariancePopulationOrDefaultDecisionTreeCategoricalEdge
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 MethodCovarianceSampleDecisionTreeCategoricalEdge
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 MethodCovarianceSampleOrDefaultDecisionTreeCategoricalEdge
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 MethodCumulativeDistributionDecisionTreeCategoricalEdge
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodCumulativeDistributionOrDefaultDecisionTreeCategoricalEdge
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodFirstRawMomentDecisionTreeCategoricalEdge
Returns the first raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFirstRawMomentOrDefaultDecisionTreeCategoricalEdge
Returns the first raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthCentralMomentDecisionTreeCategoricalEdge
Returns the fourth central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthCentralMomentOrDefaultDecisionTreeCategoricalEdge
Returns the fourth central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthRawMomentDecisionTreeCategoricalEdge
Returns the fourth raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthRawMomentOrDefaultDecisionTreeCategoricalEdge
Returns the fourth raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodGeometricMeanDecisionTreeCategoricalEdge
Returns the geometric mean of the container's values. http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodGeometricMeanOrDefaultDecisionTreeCategoricalEdge
Returns the geometric mean of the container's values. http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomDecisionTreeCategoricalEdge(Int32, DescriptiveStatisticsBaseGetRankDelegateDecisionTreeCategoricalEdge)Overloaded.
Returns given amount of objects with biggest values gotten from specified delegate.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodGetBottomDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, Int32, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetCenteredDecisionTreeCategoricalEdge(FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCenteredDecisionTreeCategoricalEdge(IListDouble, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCenteredDecisionTreeCategoricalEdge(FuncDecisionTreeCategoricalEdge, Double, Boolean, Double)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCenteredDecisionTreeCategoricalEdge(IListDouble, FuncDecisionTreeCategoricalEdge, Double, Boolean, Double)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredBoundariesDecisionTreeCategoricalEdge(Double, Double, FuncDecisionTreeCategoricalEdge, 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 MethodGetEnsuredBoundariesDecisionTreeCategoricalEdge(Double, Double, IListDouble, FuncDecisionTreeCategoricalEdge, 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 MethodGetEnsuredBoundariesDecisionTreeCategoricalEdge(Double, Double, FuncDecisionTreeCategoricalEdge, 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 MethodGetEnsuredBoundariesDecisionTreeCategoricalEdge(Double, Double, IListDouble, FuncDecisionTreeCategoricalEdge, 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 MethodGetEnsuredLeftBoundaryDecisionTreeCategoricalEdge(Double, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundaryDecisionTreeCategoricalEdge(Double, IListDouble, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundaryDecisionTreeCategoricalEdge(Double, FuncDecisionTreeCategoricalEdge, Double, Boolean, Double)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundaryDecisionTreeCategoricalEdge(Double, IListDouble, FuncDecisionTreeCategoricalEdge, Double, Boolean, Double)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundaryDecisionTreeCategoricalEdge(Double, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundaryDecisionTreeCategoricalEdge(Double, IListDouble, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundaryDecisionTreeCategoricalEdge(Double, FuncDecisionTreeCategoricalEdge, Double, Boolean, Double)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundaryDecisionTreeCategoricalEdge(Double, IListDouble, FuncDecisionTreeCategoricalEdge, Double, Boolean, Double)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardizedDecisionTreeCategoricalEdge(FuncDecisionTreeCategoricalEdge, 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 MethodGetStandardizedDecisionTreeCategoricalEdge(IListDouble, FuncDecisionTreeCategoricalEdge, 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 MethodGetStandardizedDecisionTreeCategoricalEdge(FuncDecisionTreeCategoricalEdge, 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 MethodGetStandardizedDecisionTreeCategoricalEdge(IListDouble, FuncDecisionTreeCategoricalEdge, 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 MethodGetTopDecisionTreeCategoricalEdge(Int32, DescriptiveStatisticsBaseGetRankDelegateDecisionTreeCategoricalEdge)Overloaded.
Returns given amount of objects with smallest values gotten from specified delegate.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodGetTopDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, Int32, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodHarmonicMeanDecisionTreeCategoricalEdge
Returns the harmonic mean of the container's values. http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodHarmonicMeanOrDefaultDecisionTreeCategoricalEdge
Returns the harmonic mean of the container's values. http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodKurtosisDecisionTreeCategoricalEdge
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.)
Public Extension MethodKurtosisOrDefaultDecisionTreeCategoricalEdge
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Decimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Int64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableDecimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableInt64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Decimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Decimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDecimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDecimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Single, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableSingle, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Single, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Single, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableSingle, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableSingle, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge, TResult(Int32, FuncDecisionTreeCategoricalEdge, TResult)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge, TResult(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, TResult)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDecisionTreeCategoricalEdge, TResult(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, TResult)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Decimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Int64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableDecimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableInt64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Single, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableSingle, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Decimal, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Decimal, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int32, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int32, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int64, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int64, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDecimal, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDecimal, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt32, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt32, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt64, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt64, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Double, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Double, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Single, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Single, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDouble, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDouble, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableSingle, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableSingle, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge, TResult(Int32, FuncDecisionTreeCategoricalEdge, TResult)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge, TResult(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, TResult, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDecisionTreeCategoricalEdge, TResult(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, TResult, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodMaximumDecisionTreeCategoricalEdge
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndexDecisionTreeCategoricalEdge
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndexOrDefaultDecisionTreeCategoricalEdge
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumOrDefaultDecisionTreeCategoricalEdge
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMeanDecisionTreeCategoricalEdge
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMeanOrDefaultDecisionTreeCategoricalEdge
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMedianDecisionTreeCategoricalEdge
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMedianOrDefaultDecisionTreeCategoricalEdge
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrangeDecisionTreeCategoricalEdge
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrangeOrDefaultDecisionTreeCategoricalEdge
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumDecisionTreeCategoricalEdge
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndexDecisionTreeCategoricalEdge
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndexOrDefaultDecisionTreeCategoricalEdge
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximumDecisionTreeCategoricalEdge
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximumOrDefaultDecisionTreeCategoricalEdge
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumOrDefaultDecisionTreeCategoricalEdge
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodOrderStatisticDecisionTreeCategoricalEdge
Returns order statistic of specified rank from container's value. http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.)
Public Extension MethodOrderStatisticOrDefaultDecisionTreeCategoricalEdge
Returns order statistic of specified rank from container's value. http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.)
Public Extension MethodQuadraticMeanDecisionTreeCategoricalEdge
Returns the quadratic mean of the container's values. http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodQuadraticMeanOrDefaultDecisionTreeCategoricalEdge
Returns the quadratic mean of the container's values. http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodQuantileDecisionTreeCategoricalEdge
Returns quantile of specified level from container's value. http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.)
Public Extension MethodQuantileOrDefaultDecisionTreeCategoricalEdge
Returns quantile of specified level from container's value. http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondCentralMomentDecisionTreeCategoricalEdge
Returns the second central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondCentralMomentOrDefaultDecisionTreeCategoricalEdge
Returns the second central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondRawMomentDecisionTreeCategoricalEdge
Returns the second raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondRawMomentOrDefaultDecisionTreeCategoricalEdge
Returns the second raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewnessDecisionTreeCategoricalEdge
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewnessOrDefaultDecisionTreeCategoricalEdge
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Decimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Int64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableDecimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableInt64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Decimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Decimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDecimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDecimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Single, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableSingle, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Single, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Single, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableSingle, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableSingle, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge, TResult(Int32, FuncDecisionTreeCategoricalEdge, TResult)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge, TResult(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, TResult)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDecisionTreeCategoricalEdge, TResult(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, TResult)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Decimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Int64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableDecimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableInt64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, Single, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(Int32, FuncDecisionTreeCategoricalEdge, NullableSingle, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Decimal, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Decimal, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int32, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int32, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int64, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Int64, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDecimal, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDecimal, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt32, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt32, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt64, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableInt64, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Double, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Double, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Single, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, Single, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDouble, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableDouble, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableSingle, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, NullableSingle, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge, TResult(Int32, FuncDecisionTreeCategoricalEdge, TResult)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge, TResult(DecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, TResult, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDecisionTreeCategoricalEdge, TResult(IListDecisionTreeCategoricalEdge, FuncDecisionTreeCategoricalEdge, TResult, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodStandardDeviationDecisionTreeCategoricalEdge
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationOrDefaultDecisionTreeCategoricalEdge
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationPopulationDecisionTreeCategoricalEdge
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationPopulationOrDefaultDecisionTreeCategoricalEdge
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationSampleDecisionTreeCategoricalEdge
Returns the sample standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationSampleOrDefaultDecisionTreeCategoricalEdge
Returns the sample standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodSumDecisionTreeCategoricalEdge
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudesDecisionTreeCategoricalEdge
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudesOrDefaultDecisionTreeCategoricalEdge
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumOrDefaultDecisionTreeCategoricalEdge
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquaresDecisionTreeCategoricalEdge
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquaresOrDefaultDecisionTreeCategoricalEdge
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdCentralMomentDecisionTreeCategoricalEdge
Returns the third central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdCentralMomentOrDefaultDecisionTreeCategoricalEdge
Returns the third central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdRawMomentDecisionTreeCategoricalEdge
Returns the third raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdRawMomentOrDefaultDecisionTreeCategoricalEdge
Returns the third raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodToArrayDecisionTreeCategoricalEdge(FuncDecisionTreeCategoricalEdge, Double, Boolean)Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodToArrayDecisionTreeCategoricalEdge(FuncDecisionTreeCategoricalEdge, Double, Boolean, Double)Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodVarianceDecisionTreeCategoricalEdge
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceOrDefaultDecisionTreeCategoricalEdge
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulationDecisionTreeCategoricalEdge
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulationOrDefaultDecisionTreeCategoricalEdge
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSampleDecisionTreeCategoricalEdge
Returns the sample variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSampleOrDefaultDecisionTreeCategoricalEdge
Returns the sample variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Top
See Also