| Package | flare.data |
| Class | public class DataTable |
| Property | Defined by | ||
|---|---|---|---|
| data : Array An array of data objects, each representing a row of data.
| DataTable | ||
| schema : DataSchema
A DataSchema describing the data columns of the table.
| DataTable | ||
| Method | Defined by | ||
|---|---|---|---|
|
DataTable(data:Array, schema:DataSchema = null)
Creates a new data table instance.
| DataTable | ||
| data | property |
public var data:ArrayAn array of data objects, each representing a row of data.
| schema | property |
public var schema:DataSchemaA DataSchema describing the data columns of the table.
| DataTable | () | constructor |
public function DataTable(data:Array, schema:DataSchema = null)Creates a new data table instance.
Parametersdata:Array — an array of tuples, each tuple is a row of data
|
|
schema:DataSchema (default = null) — an optional DataSchema describing the data columns
|