Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-33980: [Docs][Python] Document DataFrame Interchange Protocol implementation and usage #35835

Merged
merged 9 commits into from
Jun 7, 2023
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
# Show members for classes in .. autosummary
autodoc_default_options = {
'members': None,
'special-members': '__dataframe__',
'undoc-members': None,
'show-inheritance': None,
'inherited-members': None
Expand Down
12 changes: 12 additions & 0 deletions docs/source/python/api/tables.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,18 @@ Classes
TableGroupBy
RecordBatchReader

Dataframe Interchange Protocol
------------------------------

.. currentmodule:: pyarrow.interchange

.. autosummary::
:toctree: ../generated/

from_dataframe
AlenkaF marked this conversation as resolved.
Show resolved Hide resolved

.. currentmodule:: pyarrow

.. _api.tensor:

Tensors
Expand Down
1 change: 1 addition & 0 deletions docs/source/python/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ files into Arrow structures.
filesystems_deprecated
numpy
pandas
interchange_protocol
timestamps
orc
csv
Expand Down
115 changes: 115 additions & 0 deletions docs/source/python/interchange_protocol.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
.. Licensed to the Apache Software Foundation (ASF) under one
.. or more contributor license agreements. See the NOTICE file
.. distributed with this work for additional information
.. regarding copyright ownership. The ASF licenses this file
.. to you under the Apache License, Version 2.0 (the
.. "License"); you may not use this file except in compliance
.. with the License. You may obtain a copy of the License at

.. http://www.apache.org/licenses/LICENSE-2.0

.. Unless required by applicable law or agreed to in writing,
.. software distributed under the License is distributed on an
.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
.. KIND, either express or implied. See the License for the
.. specific language governing permissions and limitations
.. under the License.

Dataframe Interchange Protocol
==============================

The interchange protocol is implemented for ``pa.Table`` and
``pa.RecordBatch`` and is used to interchange data between
PyArrow and other dataframe libraries that also have the
protocol implemented. The data structures that are supported
in the protocol are primitive data types plus the dictionary
data type. The protocol also has missing data support and
it supports chunking, meaning accessing the
data in “batches” of rows.


Python dataframe interchange protocol is designed by the
AlenkaF marked this conversation as resolved.
Show resolved Hide resolved
`Consortium for Python Data API Standards <https://data-apis.org/>`_
in order to enable data interchange between dataframe
libraries in the Python ecosystem. See more about the
standard in the
`protocol documentation <https://data-apis.org/dataframe-protocol/latest/index.html>`_.

``__dataframe__()`` method
AlenkaF marked this conversation as resolved.
Show resolved Hide resolved
--------------------------

``__dataframe__()`` method creates a new exchange object that
AlenkaF marked this conversation as resolved.
Show resolved Hide resolved
the consumer library can take and construct an object of it's own.

.. code-block::

>>> import pyarrow as pa
>>> table = pa.table({"n_atendees": [100, 10, 1]})
>>> table.__dataframe__()
<pyarrow.interchange.dataframe._PyArrowDataFrame object at ...>

AlenkaF marked this conversation as resolved.
Show resolved Hide resolved
from_dataframe() method
-----------------------

With ``from_dataframe()`` method, we can construct a ``pa.table``
AlenkaF marked this conversation as resolved.
Show resolved Hide resolved
from any dataframe object that implements the
``__dataframe__()`` method via the dataframe interchange
protocol.

We can for example take a pandas dataframe and construct a
pyarrow table with the use of the interchange protocol:

.. code-block::

>>> import pyarrow
>>> from pyarrow.interchange import from_dataframe

>>> import pandas as pd
>>> df = pd.DataFrame({
... "n_atendees": [100, 10, 1],
... "country": ["Italy", "Spain", "Slovenia"],
... })
>>> df
n_atendees country
0 100 Italy
1 10 Spain
2 1 Slovenia
>>> from_dataframe(df)
pyarrow.Table
n_atendees: int64
country: large_string
----
n_atendees: [[100,10,1]]
country: [["Italy","Spain","Slovenia"]]

We can do the same with polars dataframe:

.. code-block::

>>> import polars as pl
>>> from datetime import datetime
>>> arr = [datetime(2023, 5, 20, 10, 0),
... datetime(2023, 5, 20, 11, 0),
... datetime(2023, 5, 20, 13, 30)]
>>> df = pl.DataFrame({
... 'Talk': ['About Polars','Intro into PyArrow','Coding in Rust'],
... 'Time': arr,
... })
>>> df
shape: (3, 2)
┌────────────────────┬─────────────────────┐
│ Talk ┆ Time │
│ --- ┆ --- │
│ str ┆ datetime[μs] │
╞════════════════════╪═════════════════════╡
│ About Polars ┆ 2023-05-20 10:00:00 │
│ Intro into PyArrow ┆ 2023-05-20 11:00:00 │
│ Coding in Rust ┆ 2023-05-20 13:30:00 │
└────────────────────┴─────────────────────┘
>>> from_dataframe(df)
pyarrow.Table
Talk: large_string
Time: timestamp[us]
----
Talk: [["About Polars","Intro into PyArrow","Coding in Rust"]]
Time: [[2023-05-20 10:00:00.000000,2023-05-20 11:00:00.000000,2023-05-20 13:30:00.000000]]
55 changes: 55 additions & 0 deletions python/pyarrow/interchange/from_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,61 @@ def from_dataframe(df: DataFrameObject, allow_copy=True) -> pa.Table:
Returns
-------
pa.Table

Examples
--------
>>> import pyarrow
>>> from pyarrow.interchange import from_dataframe

Convert a pandas dataframe to a pyarrow table:

>>> import pandas as pd
>>> df = pd.DataFrame({
... "n_atendees": [100, 10, 1],
... "country": ["Italy", "Spain", "Slovenia"],
... })
>>> df
n_atendees country
0 100 Italy
1 10 Spain
2 1 Slovenia
>>> from_dataframe(df)
pyarrow.Table
n_atendees: int64
country: large_string
----
n_atendees: [[100,10,1]]
country: [["Italy","Spain","Slovenia"]]

Convert a polars dataframe to a pyarrow table:

>>> import polars as pl
>>> from datetime import datetime
>>> arr = [datetime(2023, 5, 20, 10, 0),
... datetime(2023, 5, 20, 11, 0),
... datetime(2023, 5, 20, 13, 30)]
>>> df = pl.DataFrame({
... 'Talk': ['About Polars','Intro into PyArrow','Coding in Rust'],
... 'Time': arr,
... })
>>> df
shape: (3, 2)
┌────────────────────┬─────────────────────┐
│ Talk ┆ Time │
│ --- ┆ --- │
│ str ┆ datetime[μs] │
╞════════════════════╪═════════════════════╡
│ About Polars ┆ 2023-05-20 10:00:00 │
│ Intro into PyArrow ┆ 2023-05-20 11:00:00 │
│ Coding in Rust ┆ 2023-05-20 13:30:00 │
└────────────────────┴─────────────────────┘
>>> from_dataframe(df)
pyarrow.Table
Talk: large_string
Time: timestamp[us]
----
Talk: [["About Polars","Intro into PyArrow","Coding in Rust"]]
Time: [[2023-05-20 10:00:00.000000,2023-05-20 11:00:00.000000,2023-05-20 13:30:00.000000]]
"""
if isinstance(df, pa.Table):
return df
Expand Down
Loading