Data |
| Name | Description | |
|---|---|---|
| DataFrame | Default constructor. Constructs an empty data frame. | |
| DataFrame(DataTable) | Constructs a DataFrame instance from the given DataTable. | |
| DataFrame(DFColumn) | Constructs a DataFrame instance from the given array of columns. | |
| DataFrame(String) | Constructs a DataFrame instance from the given string. | |
| DataFrame(DataTable, Int32) | Constructs a DataFrame instance from the given DataTable. Row keys are set to the values in the specified column. | |
| DataFrame(DataTable, Object) | Constructs a DataFrame instance from the given DataTable. Row keys are set to the given array of objects. | |
| DataFrame(DataTable, String) | Constructs a DataFrame instance from the given DataTable. Row keys are set to the values in the specified column. | |
| DataFrame(DFColumn, ICollection) | Constructs a DataFrame instance from the given array of columns and a collection of row keys. | |
| DataFrame(DoubleMatrix, String) | Constructs a DataFrame instance from the given matrix. | |
| DataFrame(String, Boolean, Boolean, String, Boolean) | Constructs a DataFrame instance from the given string. |