Polars dataframes#

In this notebook we make sure that our test Polars dataframes are displayed nicely with the default itables settings.

import itables

dict_of_test_dfs = itables.sample_polars_dfs.get_dict_of_test_dfs()
itables.init_notebook_mode()

empty#

itables.show(dict_of_test_dfs["empty"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

No rows#

itables.show(dict_of_test_dfs["no_rows"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

bool#

itables.show(dict_of_test_dfs["bool"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

Nullable boolean#

itables.show(dict_of_test_dfs["nullable_boolean"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

int#

itables.show(dict_of_test_dfs["int"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

Nullable integer#

itables.show(dict_of_test_dfs["nullable_int"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

float#

itables.show(dict_of_test_dfs["float"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

str#

itables.show(dict_of_test_dfs["str"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

time#

itables.show(dict_of_test_dfs["time"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

ordered_categories#

itables.show(dict_of_test_dfs["ordered_categories"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

countries#

itables.show(dict_of_test_dfs["countries"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

int_float_str#

itables.show(dict_of_test_dfs["int_float_str"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

wide#

itables.show(dict_of_test_dfs["wide"], maxBytes=100000, maxColumns=100)
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

long_column_names#

itables.show(dict_of_test_dfs["long_column_names"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)

big_integers#

itables.show(dict_of_test_dfs["big_integers"])
Loading ITables v2.6.1 from the init_notebook_mode cell... (need help?)