LinqExtensions.DataFrameLookup<TKey, R, C> Class

Defines an indexer, size property, and Boolean search method for LinqExtensions.Grouping<TKey, T> objects.

Definition

Namespace: Extreme.DataAnalysis.Linq
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public class DataFrameLookup<TKey, R, C> : IEnumerable<LinqExtensions.DataFrameGrouping<TKey, R, C>>, 
	IEnumerable
Inheritance
Object  →  LinqExtensions.DataFrameLookup<TKey, R, C>
Implements
IEnumerable<LinqExtensions.DataFrameGrouping<TKey, R, C>>, IEnumerable

Type Parameters

TKey
The type of the key.
R
The element type of the row index of the data frame.
C
The element type of the column index of the data frame.

Constructors

LinqExtensions.DataFrameLookup<TKey, R, C> Constructs a new lookup object.

Properties

Count Gets the number of key/value collection pairs.
Item Gets the sequence of values indexed by the specified key.

Methods

Contains Determines whether a specific key exists in the lookup.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetEnumerator 
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

Extension Methods

Group<LinqExtensions.DataFrameGrouping<TKey, R, C>> Returns a grouping by the unique elements in a sequence.
(Defined by Grouping)
Group<LinqExtensions.DataFrameGrouping<TKey, R, C>> Returns a grouping by the unique elements in a sequence using the specified comparer to determine equality.
(Defined by Grouping)
Sum<LinqExtensions.DataFrameGrouping<TKey, R, C>> Computes the sum of the sequence of values.
(Defined by ArrayMath)
Sum<LinqExtensions.DataFrameGrouping<TKey, R, C>, U> Computes the sum of the sequence of values that are obtained by invoking a transform function on each element of the input sequence.
(Defined by ArrayMath)

See Also