You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a convenience method around ``read``. It iterates the return value from ``read`` and returns a concatenation of all the table-pieces found. Its nominal use is to simply unit-test cases.
241
+
This is a convenience method around ``read``. It iterates the return value from ``read`` and returns a concatenation of all the table-pieces found. Its nominal use is to simplify unit-test cases.
299
242
"""
300
243
returnpa.concat_tables(
301
244
self.read(
@@ -412,11 +355,6 @@ def read_as_pandas(
412
355
413
356
fordfiniterator:
414
357
415
-
# This is the 'decode on read' part of our logic; in dim_select we have the 'encode on
Copy file name to clipboardExpand all lines: apis/python/src/tiledbsoma/soma_indexed_dataframe.py
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -259,7 +259,7 @@ def read(
259
259
iterator=query.df[ids]
260
260
261
261
fortableiniterator:
262
-
yieldtable
262
+
yielddf
263
263
264
264
defread_all(
265
265
self,
@@ -275,17 +275,17 @@ def read_all(
275
275
# TODO: platform_config,
276
276
) ->pa.Table:
277
277
"""
278
-
This is a convenience method around ``read``. It iterates the return value from ``read`` and returns a concatenation of all the table-pieces found. Its nominal use is to simply unit-test cases.
278
+
This is a convenience method around ``read``. It iterates the return value from ``read`` and returns a concatenation of all the record batches found. Its nominal use is to simplify unit-test cases.
Write an Arrow.Table to the persistent object. As duplicate index values are not allowed, index values already present in the object are overwritten and new index values are added.
286
+
Write an Arrow.RecordBatch to the persistent object. As duplicate index values are not allowed, index values already present in the object are overwritten and new index values are added.
287
287
288
-
:param values: An Arrow.Table containing all columns, including the index columns. The schema for the values must match the schema for the ``SOMAIndexedDataFrame``.
288
+
:param values: An Arrow.RecordBatch containing all columns, including the index columns. The schema for the values must match the schema for the ``SOMAIndexedDataFrame``.
0 commit comments