Click or drag to resize
F# Frame extensionsStaticC, a, R Method (IEnumerableTupleC, a)
Creates a frame from a sequence of column keys and column series pairs. The column series can contain values of any type, but it has to be the same for all the series - if you have heterogenously typed series, use `=?>`. [category:Frame construction]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<R, C> Static<C, a, R>(
	IEnumerable<Tuple<C, a>> cols
)
where a : Object, ISeries<R>

Parameters

cols
Type: System.Collections.GenericIEnumerableTupleC, a

[Missing <param name="cols"/> documentation for "M:Deedle.F# Frame extensions.Frame.ofColumns.Static``3(System.Collections.Generic.IEnumerable{System.Tuple{``0,``1}})"]

Type Parameters

C
a
R

Return Value

Type: FrameR, C

[Missing <returns> documentation for "M:Deedle.F# Frame extensions.Frame.ofColumns.Static``3(System.Collections.Generic.IEnumerable{System.Tuple{``0,``1}})"]

See Also