As the Polars DataFrame library (https://pola.rs/) is gaining popularity, are there any plans to support Polars in Great Expectations?
Hi there @shivaram.bollineni and welcome to our community!
Thank you for your question. This is something on our radar but has not yet been prioritized.
In the meantime, I would like to share with you that pandas 2.0 supports polars interoperability. With pandas > 2.0 installed, you can convert the polars df to a pandas df like this:
pandas_df = polars_df.to_pandas()
and the underlying in-memory storage (pyarrow format) does not change. I hope this is helpful to you in the meantime.