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

Method copy

dask/dataframe/dask_expr/_collection.py:705–722  ·  view source on GitHub ↗

Make a copy of the dataframe This is strictly a shallow copy of the underlying computational graph. It does not affect the underlying data Parameters ---------- deep : boolean, default False The deep value must be `False` and it is declared as a

(self, deep: bool = False)

Source from the content-addressed store, hash-verified

703 return out
704
705 def copy(self, deep: bool = False):
706 """Make a copy of the dataframe
707
708 This is strictly a shallow copy of the underlying computational graph.
709 It does not affect the underlying data
710
711 Parameters
712 ----------
713 deep : boolean, default False
714 The deep value must be `False` and it is declared as a parameter just for
715 compatibility with third-party libraries like cuDF and pandas
716 """
717 if deep is not False:
718 raise ValueError(
719 "The `deep` value must be False. This is strictly a shallow copy "
720 "of the underlying computational graph."
721 )
722 return new_collection(self.expr)
723
724 @derived_from(pd.DataFrame)
725 def isin(self, values):

Callers 15

_renameFunction · 0.45
strip_unknown_categoriesFunction · 0.45
clear_known_categoriesFunction · 0.45
drop_by_shallow_copyFunction · 0.45
_categorize_blockFunction · 0.45
_to_string_dtypeFunction · 0.45
_Function · 0.45
_non_agg_chunkFunction · 0.45
_var_chunkFunction · 0.45
_cov_chunkFunction · 0.45
assignFunction · 0.45
assign_indexFunction · 0.45

Calls 1

new_collectionFunction · 0.90

Tested by 15

test_groupby_group_keysFunction · 0.36
test_pivot_table_failsFunction · 0.36
test_delFunction · 0.36
test_setitemFunction · 0.36
test_copyFunction · 0.36
test_array_assignmentFunction · 0.36