bigframes.pandas.MultiIndex.drop#

MultiIndex.drop(labels:Any)Index#

Make new Index with passed list of labels deleted.

Examples:

>>>idx=bpd.Index(['a','b','c'])>>>idx.drop(['a'])Index(['b', 'c'], dtype='string')
Parameters:

labels (array-like orscalar)

Returns:

Will be same type as self.

Return type:

bigframes.pandas.Index

On this page

This Page