arrow_to_pandas¶
-
lsst.daf.butler.formatters.parquet.arrow_to_pandas(arrow_table: pa.Table) → pd.DataFrame¶ Convert a pyarrow table to a pandas DataFrame.
Parameters: - arrow_table :
pyarrow.Table Input arrow table to convert. If the table has
pandasmetadata in the schema it will be used in the construction of theDataFrame.
Returns: - dataframe :
pandas.DataFrame Converted pandas dataframe.
- arrow_table :