要显示pandas数据帧以使其宽度适合屏幕,可以使用以下方法:
import pandas as pd
pd.set_option('display.max_columns', 10)
import pandas as pd
df = pd.DataFrame(...) # 假设df是你的数据帧
print(df.head(3))
import pandas as pd
df = pd.DataFrame(...) # 假设df是你的数据帧
print(df.to_string(line_width=80))
import pandas as pd
df = pd.DataFrame(...) # 假设df是你的数据帧
styles = [
{'selector': 'th.col1', 'props': [('width', '100px')]}
]
styled_df = df.style.set_table_styles(styles)
print(styled_df)
这些方法可以根据你的需求选择使用,以确保数据帧的宽度适应屏幕。
领取专属 10元无门槛券
手把手带您无忧上云