bigframes.pandas.MultiIndex.to_pandas#
- MultiIndex.to_pandas(*, allow_large_results: bool | None = None, dry_run: bool = False) Index | Series#
Gets the Index as a pandas Index.
- Parameters:
allow_large_results (bool, default None) – If not None, overrides the global setting to allow or disallow large query results over the default size limit of 10 GB.
dry_run (bool, default False) – If this argument is true, this method will not process the data. Instead, it returns a Pandas series containing dtype and the amount of bytes to be processed.
- Returns:
A pandas Index with all of the labels from this Index. If dry run is set to True, returns a Series containing dry run statistics.
- Return type: