Click or drag to resize
SeriesK, VGetItems Method (IEnumerableK)
Returns a new series with an index containing the specified keys. When the key is not found in the current series, the newly returned series will contain a missing value. When the second parameter is not specified, the keys have to exactly match the keys in the current series (`Lookup.Exact`). ## Parameters * `keys` - A collection of keys in the current series. [category:Accessors and slicing]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public Series<K, V> GetItems(
	IEnumerable<K> keys
)

Parameters

keys
Type: System.Collections.GenericIEnumerableK

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

Return Value

Type: SeriesK, V

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

See Also