@@ -14,23 +14,23 @@ including other versions of pandas.
14
14
Enhancements
15
15
~~~~~~~~~~~~
16
16
17
- .. _whatsnew_150.enhancements.dataframe_exchange :
17
+ .. _whatsnew_150.enhancements.dataframe_interchange :
18
18
19
- DataFrame exchange protocol implementation
20
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
19
+ DataFrame interchange protocol implementation
20
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
21
21
22
- Pandas now implement the DataFrame exchange API spec.
22
+ Pandas now implement the DataFrame interchange API spec.
23
23
See the full details on the API at https://data-apis.org/dataframe-protocol/latest/index.html
24
24
25
25
The protocol consists of two parts:
26
26
27
- - New method :meth: `DataFrame.__dataframe__ ` which produces the exchange object.
28
- It effectively "exports" the Pandas dataframe as an exchange object so
29
- any other library which has the protocol implemented can "import" that dataframe
30
- without knowing anything about the producer except that it makes an exchange object.
31
- - New function :func: `pandas.api.exchange .from_dataframe ` which can take
32
- an arbitrary exchange object from any conformant library and construct a
33
- Pandas DataFrame out of it.
27
+ - New method :meth: `DataFrame.__dataframe__ ` which produces the interchange object.
28
+ It effectively "exports" the pandas dataframe as an interchange object so
29
+ any other library which has the protocol implemented can "import" that dataframe
30
+ without knowing anything about the producer except that it makes an interchange object.
31
+ - New function :func: `pandas.api.interchange .from_dataframe ` which can take
32
+ an arbitrary interchange object from any conformant library and construct a
33
+ pandas DataFrame out of it.
34
34
35
35
.. _whatsnew_150.enhancements.styler :
36
36
0 commit comments