polars.Config.set_tbl_hide_column_data_types#

classmethod Config.set_tbl_hide_column_data_types(
active: bool | None = True,
) type[Config][source]#

Hide table column data types (i64, f64, str etc.).

Examples

>>> df = pl.DataFrame({"abc": [1.0, 2.5, 5.0], "xyz": [True, False, True]})
>>> pl.Config.set_tbl_hide_column_data_types(True)  
# ...
# shape: (3, 2)        shape: (3, 2)
# ┌─────┬───────┐      ┌─────┬───────┐
# │ abc ┆ xyz   │      │ abc ┆ xyz   │
# │ --- ┆ ---   │      ╞═════╪═══════╡
# │ f64 ┆ bool  │      │ 1.0 ┆ true  │
# ╞═════╪═══════╡  >>  │ 2.5 ┆ false │
# │ 1.0 ┆ true  │      │ 5.0 ┆ true  │
# │ 2.5 ┆ false │      └─────┴───────┘
# │ 5.0 ┆ true  │
# └─────┴───────┘