bigframes.pandas.DataFrame.to_arrow#

DataFrame.to_arrow(*,ordered:bool=True,allow_large_results:bool|None=None)Table[source]#

Write DataFrame to an Arrow table / record batch.

Parameters:
  • ordered (bool,default True) – Determines whether the resulting Arrow table will be ordered.In some cases, unordered may result in a faster-executing query.

  • allow_large_results (bool,default None) – If not None, overrides the global setting to allow or disallow large query resultsover the default size limit of 10 GB.

Returns:

A pyarrow Table with all rows and columns of this DataFrame.

Return type:

pyarrow.Table

This Page