FrameViewToDictionaries Method

Writes the data in the view as a sequence of dictionaries.

Definition

Namespace: Meta.Numerics.Data
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public IEnumerable<Dictionary<string, Object>> ToDictionaries()

Return Value

IEnumerableDictionaryString, Object
An enumerable sequence of dictionaries, one for each row.

Remarks

Each row produces one dictionary, whose keys are the column names and whose values are the corresponding column values in that row.

This method can be used to produce a JSON serialized form of the data.

See Also