| FrameModuleDenseColumnsR, C Method |
Returns the columns of the data frame that do not have any missing values.
The operation returns a series (indexed by the column keys of the source frame)
containing _series_ representing individual columns of the frame. This is similar
to `Columns`, but it skips columns that contain missing value in _any_ row.
[category:Missing values]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static ColumnSeries<R, C> DenseColumns<R, C>(
Frame<R, C> frame
)
Parameters
- frame
- Type: DeedleFrameR, C
[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.DenseColumns``2(Deedle.Frame{``0,``1})"]
Type Parameters
- R
- C
Return Value
Type:
ColumnSeriesR,
C[Missing <returns> documentation for "M:Deedle.FrameModule.DenseColumns``2(Deedle.Frame{``0,``1})"]
See Also