Pandas dataframes#

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

import itables

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

empty#

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

No rows#

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

No rows one column#

itables.show(dict_of_test_dfs["no_rows_one_column"])
Loading ITables v2.4.0rc1 from the init_notebook_mode cell... (need help?)

No columns#

itables.show(dict_of_test_dfs["no_columns"])
Loading ITables v2.4.0rc1 from the init_notebook_mode cell... (need help?)

No columns one row#

itables.show(dict_of_test_dfs["no_columns_one_row"])
Loading ITables v2.4.0rc1 from the init_notebook_mode cell... (need help?)

bool#

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

Nullable boolean#

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

int#

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

Nullable integer#

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

float#

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

str#

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

time#

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

object#

itables.show(dict_of_test_dfs["object"])
Loading ITables v2.4.0rc1 from the init_notebook_mode cell... (need help?)

ordered_categories#

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

ordered_categories_in_multiindex#

itables.show(dict_of_test_dfs["ordered_categories_in_multiindex"])
Loading ITables v2.4.0rc1 from the init_notebook_mode cell... (need help?)

multiindex#

itables.show(dict_of_test_dfs["multiindex"])
Loading ITables v2.4.0rc1 from the init_notebook_mode cell... (need help?)

countries#

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

capital#

itables.show(dict_of_test_dfs["capital"])
Loading ITables v2.4.0rc1 from the init_notebook_mode cell... (need help?)

complex_index#

itables.show(dict_of_test_dfs["complex_index"])
Loading ITables v2.4.0rc1 from the init_notebook_mode cell... (need help?)

int_float_str#

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

wide#

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

long_column_names#

itables.show(dict_of_test_dfs["long_column_names"], scrollX=True)
Loading ITables v2.4.0rc1 from the init_notebook_mode cell... (need help?)

duplicated_columns#

itables.show(dict_of_test_dfs["duplicated_columns"])
Loading ITables v2.4.0rc1 from the init_notebook_mode cell... (need help?)

named_column_index#

itables.show(dict_of_test_dfs["named_column_index"])
Loading ITables v2.4.0rc1 from the init_notebook_mode cell... (need help?)

big_integers#

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