Click or drag to resize
SeriesModuleIndexWithK2, K1, T Method
Returns a new series containing the specified keys mapped to the original values of the series. When the sequence contains _fewer_ keys, the values from the series are dropped. When it contains _more_ keys, the values for additional keys are missing. [category:Sorting and index manipulation]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<K2, T> IndexWith<K2, K1, T>(
	IEnumerable<K2> keys,
	Series<K1, T> series
)

Parameters

keys
Type: System.Collections.GenericIEnumerableK2

[Missing <param name="keys"/> documentation for "M:Deedle.SeriesModule.IndexWith``3(System.Collections.Generic.IEnumerable{``0},Deedle.Series{``1,``2})"]

series
Type: DeedleSeriesK1, T

[Missing <param name="series"/> documentation for "M:Deedle.SeriesModule.IndexWith``3(System.Collections.Generic.IEnumerable{``0},Deedle.Series{``1,``2})"]

Type Parameters

K2
K1
T

Return Value

Type: SeriesK2, T

[Missing <returns> documentation for "M:Deedle.SeriesModule.IndexWith``3(System.Collections.Generic.IEnumerable{``0},Deedle.Series{``1,``2})"]

See Also