Aggregate the columns in the DataFrame to their minimum value
Description
Aggregate the columns in the DataFrame to their minimum value
Usage
<DataFrame>$min()
Value
A polars DataFrame
Examples
#> shape: (1, 2)
#> ┌─────┬─────┐
#> │ a ┆ b │
#> │ --- ┆ --- │
#> │ i32 ┆ f64 │
#> ╞═════╪═════╡
#> │ 1 ┆ 1.0 │
#> └─────┴─────┘