This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //! DataFrame describe() functionality for Polars in Rust | |
| //! | |
| //! This module provides a `describe()` method for both DataFrame and LazyFrame, | |
| //! similar to pandas/polars describe() in Python. It computes summary statistics | |
| //! including count, null_count, mean, std, min, percentiles, and max. | |
| //! | |
| //! The implementation follows the Python polars pattern closely, avoiding | |
| //! unnecessary data collection when working with LazyFrames. | |
| use anyhow::Result; |