Click or drag to resize
F# Frame extensionsStaticR, d, C Method (IEnumerableTupleR, d)
Creates a frame from a sequence of row keys and row series pairs. The row 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<R, d, C>(
	IEnumerable<Tuple<R, d>> rows
)
where d : Object, ISeries<C>

Parameters

rows
Type: System.Collections.GenericIEnumerableTupleR, d

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

Type Parameters

R
d
C

Return Value

Type: FrameR, C

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

See Also