DataPsycho opened a new issue, #4974: URL: https://github.com/apache/arrow-datafusion/issues/4974
I was trying to generate a summary on the data frame but could not find any relevant methods like `describe` or `summary` which can provide [this kind](https://docs.rs/polars/latest/polars/frame/struct.DataFrame.html#example-45) of table on the data in which Polars data frame has an implementation. **Describe the solution you'd like** A described the method on the data frame `&df.describe().await?` should return a new summary dataframe with mean, median, and max values for each column. In more advance case metric name can be provided as vec so that it only compute/statistically estimate tose values for example `&df.describe(vec!["min", "max", "25%"]).await?` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
