Method: Polars::Config.set_tbl_hide_dataframe_shape
- Defined in:
- lib/polars/config.rb
.set_tbl_hide_dataframe_shape(active = true) ⇒ Config
Hide the shape information of the dataframe when displaying tables.
475 476 477 478 |
# File 'lib/polars/config.rb', line 475 def self.set_tbl_hide_dataframe_shape(active = true) ENV["POLARS_FMT_TABLE_HIDE_DATAFRAME_SHAPE_INFORMATION"] = active ? "1" : "0" self end |