pola-rs / polars

Dataframes powered by a multithreaded, vectorized query engine, written in Rust
https://docs.pola.rs
Other
30.44k stars 1.97k forks source link

Add `show` method to `DataFrame` and `LazyFrame` #16534

Open djouallah opened 5 months ago

djouallah commented 5 months ago

Description

pretty much all Python calculation engines support show method , see pyspark documentation https://spark.apache.org/docs/latest/api/python/reference/pyspark.sql/api/pyspark.sql.DataFrame.show.html

it is just for convenience especially when used with SQL

stinodego commented 4 months ago

We want to support this. Implementation will look like:

mnurpeiissov commented 4 months ago

HI, is this being already worked on? I can be assigned if needed, I am new to the codebase and want to start contributing, will need some time and guidance to implement.

mnurpeiissov commented 4 months ago

I will proceed with implementation as @stinodego outlined, is that ok?

guilhem-dvr commented 2 weeks ago

Hi, I'm not seeing any work from @mnurpeiissov so I'm guessing he didn't proceed with the implementation.

I'm willing to implement this feature, would that be okay? I've already drafted an implementation and tests.