Click or drag to resize
F# Frame extensionsStaticR Method (IEnumerable, String)
Creates a data frame from a sequence of any .NET objects. The method uses reflection over the specified type parameter `'T` and turns its properties to columns. [category:Frame construction]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<R, string> Static<R>(
	IEnumerable values,
	string indexCol
)

Parameters

values
Type: System.CollectionsIEnumerable

[Missing <param name="values"/> documentation for "M:Deedle.F# Frame extensions.Frame.ofRecords.Static``1(System.Collections.IEnumerable,System.String)"]

indexCol
Type: SystemString

[Missing <param name="indexCol"/> documentation for "M:Deedle.F# Frame extensions.Frame.ofRecords.Static``1(System.Collections.IEnumerable,System.String)"]

Type Parameters

R

Return Value

Type: FrameR, String

[Missing <returns> documentation for "M:Deedle.F# Frame extensions.Frame.ofRecords.Static``1(System.Collections.IEnumerable,System.String)"]

See Also