MCPcopy Create free account
hub / github.com/apache/arrow / take

Method take

python/pyarrow/tests/test_dataset.py:325–327  ·  view source on GitHub ↗
(self, dataset, indices, **kwargs)

Source from the content-addressed store, hash-verified

323 return dataset.head(num_rows, **kwargs)
324
325 def take(self, dataset, indices, **kwargs):
326 self._patch_kwargs(kwargs)
327 return dataset.take(indices, **kwargs)
328
329 def count_rows(self, dataset, **kwargs):
330 self._patch_kwargs(kwargs)

Callers 15

test_no_nullMethod · 0.45
test_nullMethod · 0.45
test_out_of_indexMethod · 0.45
test_recordbatch_takeFunction · 0.45
test_recordbatch_non_cpuFunction · 0.45
test_table_non_cpuFunction · 0.45
test_scannerFunction · 0.45
test_takeFunction · 0.45

Calls 1

_patch_kwargsMethod · 0.95

Tested by

no test coverage detected