Jupyter中显示数据data时只显示省略号不显示完整数据

在开头导入pandas后加入以下:

#设置行不限制数量
pd.set_option(‘display.max_rows’,None)

#设置列不限制数量
pd.set_option(‘display.max_columns’,None)

#设置value的显示长度为100,默认为50
pd.set_option(‘max_colwidth’,100)

上一篇:在项目中使用eCharts


下一篇:MICCAI 2020论文 Learning 3D Features with 2D CNNs via Surface Projection for CT Volume Segmentation