Click or drag to resize
FrameModuleWhereRowsByC, V, R Method
Returns a new data frame containing only the rows of the input frame for which the specified `column` has the specified `value`. The operation may be implemented via an index for virtualized Deedle frames. ## Parameters - `frame` - Input data frame to be transformed - `column` - The name of the column to be matched - `value` - Required value of the column. Note that the function is generic and no conversions are performed, so the value has to match including the actual type. [category:Frame transformations]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<R, C> WhereRowsBy<C, V, R>(
	C column,
	V value,
	Frame<R, C> frame
)

Parameters

column
Type: C

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

value
Type: V

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

frame
Type: DeedleFrameR, C

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

Type Parameters

C
V
R

Return Value

Type: FrameR, C

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

See Also