Click or drag to resize
F# Frame extensionsStaticT Method (T)
Create data frame from a 2D array of values. The first dimension of the array is used as rows and the second dimension is treated as columns. Rows and columns of the returned frame are indexed with the element's offset in the array. ## Parameters - `array` - A two-dimensional array to be converted into a data frame [category:Frame construction]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<int, int> Static<T>(
	T[,] array
)

Parameters

array
Type: T

[Missing <param name="array"/> documentation for "M:Deedle.F# Frame extensions.Frame.ofArray2D.Static``1(``0[0:,0:])"]

Type Parameters

T

Return Value

Type: FrameInt32, Int32

[Missing <returns> documentation for "M:Deedle.F# Frame extensions.Frame.ofArray2D.Static``1(``0[0:,0:])"]

See Also