Click or drag to resize
FrameModuleDenseRowsR, C Method
Returns the rows of the data frame that do not have any missing values. The operation returns a series (indexed by the row keys of the source frame) containing _series_ representing individual row of the frame. This is similar to `Rows`, but it skips rows that contain missing value in _any_ column. [category:Missing values]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static RowSeries<R, C> DenseRows<R, C>(
	Frame<R, C> frame
)

Parameters

frame
Type: DeedleFrameR, C

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

Type Parameters

R
C

Return Value

Type: RowSeriesR, C

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

See Also