Is there a way to adjust or change a setting that Polars would show a same number of decimal points for all values?
And if it is, am I able to save it as default for all new notebooks in Jupyter for instance?
For example,
pl.DataFrame({"a":[0.1213, 0.4244, 0.1000, 0.4242]})
Output: shape: (4, 1)
┌────────┐
│ a │
│ --- │
│ f64 │
╞════════╡
│ 0.1213 │
│ 0.4244 │
│ 0.1 │
│ 0.4242 │
└────────┘
I'd like to see the 0.1 as 0.1000