Click or drag to resize

FrameViewToDictionaries Method

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

Namespace:  Meta.Numerics.Data
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public IEnumerable<Dictionary<string, Object>> ToDictionaries()

Return Value

Type: 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