[ Web Proxy ]
URL:
Viewing: https://dataframes.bigquery.dev/reference/api/bigframes.pandas.Index.drop.html [Back]  [Original]

bigframes.pandas.Index.drop — bigframes documentation
Back to top
Search the docs ...:

bigframes.pandas.Index.drop#

Index.drop(labels: Any) Index[source]#

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 or scalar)

Returns:

Will be same type as self.

Return type:

bigframes.pandas.Index


Web Proxy Viewer  |  New URL  |  Original Page