Method: Polars::Config.set_tbl_dataframe_shape_below
- Defined in:
- lib/polars/config.rb
.set_tbl_dataframe_shape_below(active = true) ⇒ Config
Print the dataframe shape below the dataframe when displaying tables.
331 332 333 334 |
# File 'lib/polars/config.rb', line 331 def self.set_tbl_dataframe_shape_below(active = true) ENV["POLARS_FMT_TABLE_DATAFRAME_SHAPE_BELOW"] = active ? "1" : "0" self end |