turicreate.SFrameBuilder.append_multiple¶
-
SFrameBuilder.
append_multiple
(data, segment=0)¶ Append multiple rows to an SFrame.
Throws a RuntimeError if one or more column’s type is incompatible with a type appended.
Parameters: - data : iterable[iterable]
A collection of multiple iterables, each representing a single row.
- segment : int
The segment to write the given rows. Each segment is numbered sequentially, starting with 0. Any value in segment 1 will be after any value in segment 0, and the order of rows in each segment is preserved as they are added.