Class DataFrame represents a two-dimensional data object consisting of a list of columns of the same length.

Namespace: CenterSpace.NMath.Stats
Assembly: NMathStatsPremium (in NMathStatsPremium.dll) Version: 3.6.0.0

Syntax

C#
[SerializableAttribute]
public class DataFrame : ICloneable
Visual Basic
<SerializableAttribute> _
Public Class DataFrame _
	Implements ICloneable
Visual C++
[SerializableAttribute]
public ref class DataFrame : ICloneable

Remarks

Columns may contain difference types of data: numeric, string, boolean, generic, and so on. Methods are provided for appending, inserting, removing, sorting, and permuting rows and columns.
Columns can be accessed by index or name. Rows can be accessed by index or key. Column names and row keys do not need to be unique.

Inheritance Hierarchy

See Also