Readonly
batchesThe contiguous RecordBatch RecordBatch
chunks of the Table rows.
Readonly
schemaReadonly
TArrayReadonly
TTypeReadonly
TValueThe contiguous RecordBatch RecordBatch
chunks of the Table rows.
The number of null rows in this Table.
The number of columns in this Table.
The number of rows in this Table.
Get an element value by position.
The index of the element to read. A negative index will count back from the last element.
Get an element value by position.
The index of the element to read.
Retrieve the index of the first occurrence of a value in an Vector.
The value to locate in the Vector.
Optional
offset: numberThe index at which to begin the search. If offset is omitted, the search starts at index 0.
Construct a new Table containing only specified columns.
Names of columns to keep.
A new Table of columns matching the specified names.
Construct a new Table containing only columns at the specified indices.
Indices of columns to keep.
A new Table of columns at the specified indices.
Set an element value by position.
The index of the element to write.
The value to set.
Sets a child Vector by name.
A new Table with the supplied child for the specified name.
Sets a child Vector by index.
The index of the child to overwrite.
Optional
child: nullA new Table with the supplied child at the specified index.
Sets a child Vector by index.
A new Table with the supplied child at the specified index.
Return a zero-copy sub-section of this Table.
Optional
begin: numberThe beginning of the specified portion of the Table.
Optional
end: numberThe end of the specified portion of the Table. This is exclusive of the element at the index 'end'.
Tables are collections of Vectors and have a Schema. Use the convenience methods makeTable or tableFromArrays to create a table in JavaScript. To create a table from the IPC format, use tableFromIPC.