Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/dask/dask
/ drop_columns
Function
drop_columns
dask/dataframe/methods.py:408–411 ·
view source on GitHub ↗
(df, columns, dtype)
Source
from the content-addressed store, hash-verified
406
407
408
def
drop_columns(df, columns, dtype):
409
df = df.drop(columns, axis=1)
410
df.columns = df.columns.astype(dtype)
411
return
df
412
413
414
def
fillna_check(df, method, check=True):
Callers
nothing calls this directly
Calls
2
drop
Method · 0.80
astype
Method · 0.45
Tested by
no test coverage detected