pandas.Index.delete — pandas 3.0.0.dev0+2106.gb2b2d04e41 documentation (original) (raw)
Make new Index with passed location(-s) deleted.
Parameters:
locint or list of int
Location of item(-s) which will be deleted. Use a list of locations to delete more than one value at the same time.
Returns:
Index
Will be same type as self, except for RangeIndex.
See also
Delete any rows and column from NumPy array (ndarray).
Examples
idx = pd.Index(["a", "b", "c"]) idx.delete(1) Index(['a', 'c'], dtype='object')
idx = pd.Index(["a", "b", "c"]) idx.delete([0, 2]) Index(['b'], dtype='object')