Click or drag to resize
FrameModuleLookupRowR, C, a Method
Returns a specified row from a data frame. If the data frame has ordered row index, the lookup semantics can be used to get row with nearest greater/smaller key. For exact semantics, you can use `getRow`. [category:Accessing frame data and lookup]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<C, a> LookupRow<R, C, a>(
	R row,
	Lookup lookup,
	Frame<R, C> frame
)

Parameters

row
Type: R

[Missing <param name="row"/> documentation for "M:Deedle.FrameModule.LookupRow``3(``0,Deedle.Lookup,Deedle.Frame{``0,``1})"]

lookup
Type: DeedleLookup

[Missing <param name="lookup"/> documentation for "M:Deedle.FrameModule.LookupRow``3(``0,Deedle.Lookup,Deedle.Frame{``0,``1})"]

frame
Type: DeedleFrameR, C

[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.LookupRow``3(``0,Deedle.Lookup,Deedle.Frame{``0,``1})"]

Type Parameters

R
C
a

Return Value

Type: SeriesC, a

[Missing <returns> documentation for "M:Deedle.FrameModule.LookupRow``3(``0,Deedle.Lookup,Deedle.Frame{``0,``1})"]

See Also