Creates a new data frame containing the public properties of a sequence of objects.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static DataFrame<long, string> FromObjects<T>(
IEnumerable<T> sequence
)
Public Shared Function FromObjects(Of T) (
sequence As IEnumerable(Of T)
) As DataFrame(Of Long, String)
public:
generic<typename T>
static DataFrame<long long, String^>^ FromObjects(
IEnumerable<T>^ sequence
)
static member FromObjects :
sequence : IEnumerable<'T> -> DataFrame<int64, string>
Parameters
- sequence
- Type: System.Collections.GenericIEnumerableT
A sequence of objects of type T.
Type Parameters
- T
- The type of the objects.
Return Value
Type:
DataFrameInt64,
StringA data frame whose columns contain the values of the properties
of the objects in
sequence.
Reference