tompollard / tableone

Create "Table 1" for research papers in Python
https://pypi.python.org/pypi/tableone/
MIT License
161 stars 38 forks source link

Displaying all rows in larger tables in Jupyter #81

Closed tompollard closed 4 years ago

tompollard commented 5 years ago

Jupyter sets a maximum number of rows fpr display, so larger tables may not be completely viewable. Viewing area can be extended with:

pd.set_option('display.height', 500)
pd.set_option('display.max_rows', 500)

Perhaps set these options? Avoid changing settings for the entire notebook.

tompollard commented 4 years ago

If display_all=True, the following display options are set:

display_options = {'display.max_rows': None,
                   'display.max_columns': None,
                   'display.width': None,
                   'display.max_colwidth': None}

Default is display_all=False