FrameTableFromDictionaries Method |
Constructs a new frame table from a sequence of dictionaries.
Namespace:
Meta.Numerics.Data
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static FrameTable FromDictionaries(
IEnumerable<IReadOnlyDictionary<string, Object>> dictionaries
)
Public Shared Function FromDictionaries (
dictionaries As IEnumerable(Of IReadOnlyDictionary(Of String, Object))
) As FrameTable
public:
static FrameTable^ FromDictionaries(
IEnumerable<IReadOnlyDictionary<String^, Object^>^>^ dictionaries
)
static member FromDictionaries :
dictionaries : IEnumerable<IReadOnlyDictionary<string, Object>> -> FrameTable
Parameters
- dictionaries
- Type: System.Collections.GenericIEnumerableIReadOnlyDictionaryString, 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
Type:
FrameTableA 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