Readonly Internal[kReadonlydataReadonlyschemaReadonlyTReadonlyTReadonlyTCustom metadata for this RecordBatch.
The number of null rows in this RecordBatch.
The number of columns in this RecordBatch.
The number of rows in this RecordBatch.
Iterator for rows in this RecordBatch.
Get a row value by position.
The index of the row to read. A negative index will count back from the last row.
Combines two or more RecordBatch of the same schema.
Additional RecordBatch to add to the end of this RecordBatch.
Get a row by position.
The index of the row to read.
Retrieve the index of the first occurrence of a row in an RecordBatch.
The row to locate in the RecordBatch.
Optionaloffset: numberThe index at which to begin the search. If offset is omitted, the search starts at index 0.
Check whether an row is null.
The index at which to read the validity bitmap.
Construct a new RecordBatch containing only specified columns.
Names of columns to keep.
A new RecordBatch of columns matching the specified names.
Construct a new RecordBatch containing only columns at the specified indices.
Indices of columns to keep.
A new RecordBatch of columns matching at the specified indices.
Set a row by position.
The index of the row to write.
The value to set.
Sets a child Vector by index.
The index of the child to overwrite.
Optionalchild: nullA new RecordBatch with the new child at the specified index.
Sets a child Vector by index.
A new RecordBatch with the new child at the specified index.
Return a zero-copy sub-section of this RecordBatch.
Optionalbegin: numberOptionalend: numberThe end of the specified portion of the RecordBatch. This is exclusive of the row at the index 'end'.
Return a JavaScript Array of the RecordBatch rows.
An Array of RecordBatch rows.
Staticis
A RecordBatch is a collection of equal-length columns conforming to a particular Schema. A Table is composed of one or more RecordBatches.