Enumerates the possible JSON layouts of a data frame.
Namespace: Extreme.Data.JsonAssembly: Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 1.0.16157.0 (1.0.16157.0)
public enum JsonDataFrameLayout
Public Enumeration JsonDataFrameLayout
public enum class JsonDataFrameLayout
| Member name | Value | Description |
---|
| Default | 0 |
The default layout is used. The object is stored as
a set of three properties: the row index, the column index, and
an array of columns.
|
| Automatic | 1 |
The layout is not specified and will be inferred from the data.
|
| Split | 2 |
The object is stored as a dictionary consisting of the
row index, the column index, and the values,
each stored as lists.
|
| Records | 3 |
The object is stored as a list of dictionaries
that map column keys to values. The row index is discarded.
|
| ByRows | 4 |
The object is stored as a dictionary of row keys that map to dictionaries
of column keys that map to values.
|
| ByColumns | 5 |
The object is stored as a dictionary of column keys that map to dictionaries
of row keys that map to values.
|
| ValuesOnly | 6 |
Only the values are stored. The row and column index are discarded.
|
Numerical Libraries
Supported in: 6.0
Reference