Json Data Frame Layout Enumeration
Enumerates the possible JSON layouts of a data frame.
Definition
Namespace: Numerics.NET.Data.Json
Assembly: Numerics.NET.Data.Json (in Numerics.NET.Data.Json.dll) Version: 4.0.3
C#
Assembly: Numerics.NET.Data.Json (in Numerics.NET.Data.Json.dll) Version: 4.0.3
public enum JsonDataFrameLayout
Members
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. |