JsonDataFrameLayout Enumeration

Enumerates the possible JSON layouts of a data frame.

Definition

Namespace: Extreme.Data.Json
Assembly: Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.1
C#
public enum JsonDataFrameLayout

Members

Default0 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.
Automatic1 The layout is not specified and will be inferred from the data.
Split2 The object is stored as a dictionary consisting of the row index, the column index, and the values, each stored as lists.
Records3 The object is stored as a list of dictionaries that map column keys to values. The row index is discarded.
ByRows4 The object is stored as a dictionary of row keys that map to dictionaries of column keys that map to values.
ByColumns5 The object is stored as a dictionary of column keys that map to dictionaries of row keys that map to values.
ValuesOnly6 Only the values are stored. The row and column index are discarded.

See Also