jupytext
kernelspec
formats
notebook_metadata_filter
text_representation
md:myst
-jupytext.text_representation.jupytext_version
extension
format_name
format_version
.md
myst
0.13
display_name
language
name
itables
python
itables
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()
itables.show(dict_of_test_dfs["empty"])
itables.show(dict_of_test_dfs["no_rows"])
itables.show(dict_of_test_dfs["no_rows_one_column"])
itables.show(dict_of_test_dfs["no_columns"])
itables.show(dict_of_test_dfs["no_columns_one_row"])
itables.show(dict_of_test_dfs["bool"])
itables.show(dict_of_test_dfs["nullable_boolean"])
itables.show(dict_of_test_dfs["int"])
itables.show(dict_of_test_dfs["nullable_int"])
itables.show(dict_of_test_dfs["float"])
itables.show(dict_of_test_dfs["str"])
itables.show(dict_of_test_dfs["time"])
itables.show(dict_of_test_dfs["object"])
itables.show(dict_of_test_dfs["ordered_categories"])
ordered_categories_in_multiindex
itables.show(dict_of_test_dfs["ordered_categories_in_multiindex"])
itables.show(dict_of_test_dfs["multiindex"])
:tags: [full-width]
itables.show(dict_of_test_dfs["countries"])
itables.show(dict_of_test_dfs["capital"])
:tags: [full-width]
itables.show(dict_of_test_dfs["complex_index"])
itables.show(dict_of_test_dfs["int_float_str"])
:tags: [full-width]
itables.show(dict_of_test_dfs["wide"], maxBytes=100000, maxColumns=100, scrollX=True)
:tags: [full-width]
itables.show(dict_of_test_dfs["long_column_names"], scrollX=True)
itables.show(dict_of_test_dfs["duplicated_columns"])
itables.show(dict_of_test_dfs["named_column_index"])
itables.show(dict_of_test_dfs["big_integers"])