You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "AlenkaF (via GitHub)" <gi...@apache.org> on 2023/02/01 15:37:54 UTC

[GitHub] [arrow] AlenkaF opened a new issue, #33982: [Python] DataFrame Interchange Protocol

AlenkaF opened a new issue, #33982:
URL: https://github.com/apache/arrow/issues/33982

   ### Describe the enhancement requested
   
   This is an umbrella issue for all tasks connected to the Dataframe Interchange Protocol.
   https://data-apis.org/dataframe-protocol/latest/index.html
   
   - [ ] https://github.com/apache/arrow/issues/33346
   - [ ] https://github.com/apache/arrow/issues/33926
   - [ ] https://github.com/apache/arrow/issues/33980
   - [ ] Implementation of the https://github.com/dmlc/dlpack
   - [ ] Implement DataFrame Interchange Protocol Compliance Suite https://github.com/data-apis/dataframe-interchange-tests
   
   ### Component(s)
   
   Python


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] [Python] DataFrame Interchange Protocol [arrow]

Posted by "AlenkaF (via GitHub)" <gi...@apache.org>.
AlenkaF commented on issue #33982:
URL: https://github.com/apache/arrow/issues/33982#issuecomment-1880551558

   Closing this issue as all tasks are done.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] [Python] DataFrame Interchange Protocol [arrow]

Posted by "AlenkaF (via GitHub)" <gi...@apache.org>.
AlenkaF closed issue #33982: [Python] DataFrame Interchange Protocol
URL: https://github.com/apache/arrow/issues/33982


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] stinodego commented on issue #33982: [Python] DataFrame Interchange Protocol

Posted by "stinodego (via GitHub)" <gi...@apache.org>.
stinodego commented on issue #33982:
URL: https://github.com/apache/arrow/issues/33982#issuecomment-1669278644

   I noticed that there is currently no support yet in the `from_dataframe` function for boolean columns with bitsize 1. Is there an issue for implementing this?
   
   ```python
   import polars as pl
   import pyarrow as pa
   import pyarrow.interchange
   
   df = pl.Series("a", [True, False], dtype=pl.Boolean).to_frame()
   dfi = df.__dataframe__()
   pa.interchange.from_dataframe(dfi)
   # NotImplementedError: Conversion for (<DtypeKind.BOOL: 20>, 1, 'b', '=') is not yet supported.
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] AlenkaF commented on issue #33982: [Python] DataFrame Interchange Protocol

Posted by "AlenkaF (via GitHub)" <gi...@apache.org>.
AlenkaF commented on issue #33982:
URL: https://github.com/apache/arrow/issues/33982#issuecomment-1676828973

   No, there is no issue - I think we missed it as we didn't have the use case then.
   Will open a new issue to implement it, thanks!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org