FrameTableFromDictionaries Method

Constructs a new frame table from a sequence of dictionaries.

Definition

Namespace: Meta.Numerics.Data
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static FrameTable FromDictionaries(
	IEnumerable<IReadOnlyDictionary<string, Object>> dictionaries
)

Parameters

dictionaries  IEnumerableIReadOnlyDictionaryString, Object
A enumerable set of dictionaries, one for each row, whose keys are the column names and whose values are the cell value of the column for that row.

Return Value

FrameTable
A new frame table with data from the dictionaries.

Remarks

The storage type of each column is inferred from the types of objects encountered are the frame table is constructed.

See Also