欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

将dataframe 转化成图片保存

程序员文章站 2022-07-14 19:26:18
...

在jupyter notebook里固然可以清晰的打印出dataframe中需要显示的内容,但是一个个截图还是有点点麻烦,所以寻找了一下直接将dataframe 转化成图片保存的方法。

#将表格直接生成图片
from pandas.plotting import  table
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif'] = ['Arial Unicode MS']#显示中文字体
fig = plt.figure(figsize=(3, 4), dpi=1400)#dpi表示清晰度
ax = fig.add_subplot(111, frame_on=False) 
ax.xaxis.set_visible(False)  # hide the x axis
ax.yaxis.set_visible(False)  # hide the y axis

table(ax, df, loc='center')  # 将df换成需要保存的dataframe即可

plt.savefig('表格.jpg')

将dataframe 转化成图片保存
在jupyter notebook显示的表格
将dataframe 转化成图片保存
生成的图片

参考链接:https://www.dazhuanlan.com/2019/11/05/5dc182d91153a/

相关标签: python