jupyter可视化pandas dataframe
友好可视化 方法1:只能放在最后一行,不能和其他结果一起print
df_out_dict_pv.head(20)
友好可视化 方法2:使用位置无要求,能和其他结果一起print
html_table = df_out_dict_pv.head(20).to_html()
#在Jupyter中显示HTML表格
from IPython.display import display, HTML
display(HTML(html_table))
print(df_out_dict_pv.head(20))
原文地址:https://blog.csdn.net/woomay/article/details/143676381
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!