I have many DataFrames which I want to show in a jupyter book. The length of the values in the DataFrames vary a lot. Currently the output looks like this: current output.
What I actually want is, that all Data Frames have the same width. I managed to change the column width but not the width of the whole table.
This is my current code:
category_one_df.set_properties(**{'width': '50%'})
category_two_df.set_properties(**{'width': '50%'})
category_three_df.set_properties(**{'width': '50%'})
Thanks for your help!