MCPcopy
hub / github.com/pandas-dev/pandas / drop

Method drop

pandas/core/frame.py:6106–6116  ·  view source on GitHub ↗
(
        self,
        labels: IndexLabel | ListLike = ...,
        *,
        axis: Axis = ...,
        index: IndexLabel | ListLike = ...,
        columns: IndexLabel | ListLike = ...,
        level: Level = ...,
        inplace: Literal[True],
        errors: IgnoreRaise = ...,
    )

Source from the content-addressed store, hash-verified

6104
6105 @overload
6106 def drop(
6107 self,
6108 labels: IndexLabel | ListLike = ...,
6109 *,
6110 axis: Axis = ...,
6111 index: IndexLabel | ListLike = ...,
6112 columns: IndexLabel | ListLike = ...,
6113 level: Level = ...,
6114 inplace: Literal[True],
6115 errors: IgnoreRaise = ...,
6116 ) -> None: ...
6117
6118 @overload
6119 def drop(

Calls

no outgoing calls