MCPcopy Create free account
hub / github.com/dask/dask / itertuples

Method itertuples

dask/dataframe/dask_expr/_collection.py:2741–2745  ·  view source on GitHub ↗
(self, index=True, name="Pandas")

Source from the content-addressed store, hash-verified

2739
2740 @derived_from(pd.DataFrame)
2741 def itertuples(self, index=True, name="Pandas"):
2742 frame = self.optimize()
2743 for i in range(self.npartitions):
2744 df = frame.get_partition(i).compute()
2745 yield from df.itertuples(index=index, name=name)
2746
2747 @property
2748 def _elemwise(self):

Callers 9

test_to_bagFunction · 0.95
test_to_bagFunction · 0.95
check_metaFunction · 0.80
assert_dask_dtypesFunction · 0.80
_df_to_bagFunction · 0.80

Calls 3

get_partitionMethod · 0.80
optimizeMethod · 0.45
computeMethod · 0.45

Tested by 6

test_to_bagFunction · 0.76
test_to_bagFunction · 0.76