| FrameFromArray2DT Method |
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
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static Frame<int, int> FromArray2D<T>(
T[,] array
)
Parameters
- array
- Type: T
[Missing <param name="array"/> documentation for "M:Deedle.Frame.FromArray2D``1(``0[0:,0:])"]
Type Parameters
- T
Return Value
Type:
FrameInt32,
Int32[Missing <returns> documentation for "M:Deedle.Frame.FromArray2D``1(``0[0:,0:])"]
See Also