Answers for "pd max rows set option"

0

pd max rows set option

In [1]: import pandas as pd

In [2]: pd.options.display.max_rows
Out[2]: 15

In [3]: pd.options.display.max_rows = 999

In [4]: pd.options.display.max_rows
Out[4]: 999
Posted by: Guest on May-12-2021

Browse Popular Code Answers by Language