📜  不要限制 padnas jupyter - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:14.927000             🧑  作者: Mango

代码示例1
from IPython.display import display
with pd.option_context('display.max_rows', 100, 'display.max_columns', 10):
    display(df) #need display to show the dataframe when using with in jupyter
    #some pandas stuff