It sounds somewhat weird, but I need to save the Pandas console output string to png pics. For example:
JavaScript
x
11
11
1
>>> df
2
sales net_pft ROE ROIC
3
STK_ID RPT_Date
4
600809 20120331 22.1401 4.9253 0.1651 0.6656
5
20120630 38.1565 7.8684 0.2567 1.0385
6
20120930 52.5098 12.4338 0.3587 1.2867
7
20121231 64.7876 13.2731 0.3736 1.2205
8
20130331 27.9517 7.5182 0.1745 0.3723
9
20130630 40.6460 9.8572 0.2560 0.4290
10
20130930 53.0501 11.8605 0.2927 0.4369
11
Is there any way like df.output_as_png(filename='df_data.png')
to generate a pic file which just display above content inside?
Advertisement
Answer
Option-1: use matplotlib table functionality, with some additional styling:
JavaScript
1
34
34
1
import pandas as pd
2
import numpy as np
3
import matplotlib.pyplot as plt
4
5
df = pd.DataFrame()
6
df['date'] = ['2016-04-01', '2016-04-02', '2016-04-03']
7
df['calories'] = [2200, 2100, 1500]
8
df['sleep hours'] = [8, 7.5, 8.2]
9
df['gym'] = [True, False, False]
10
11
def render_mpl_table(data, col_width=3.0, row_height=0.625, font_size=14,
12
header_color='#40466e', row_colors=['#f1f1f2', 'w'], edge_color='w',
13
bbox=[0, 0, 1, 1], header_columns=0,
14
ax=None, **kwargs):
15
if ax is None:
16
size = (np.array(data.shape[::-1]) + np.array([0, 1])) * np.array([col_width, row_height])
17
fig, ax = plt.subplots(figsize=size)
18
ax.axis('off')
19
mpl_table = ax.table(cellText=data.values, bbox=bbox, colLabels=data.columns, **kwargs)
20
mpl_table.auto_set_font_size(False)
21
mpl_table.set_fontsize(font_size)
22
23
for k, cell in mpl_table._cells.items():
24
cell.set_edgecolor(edge_color)
25
if k[0] == 0 or k[1] < header_columns:
26
cell.set_text_props(weight='bold', color='w')
27
cell.set_facecolor(header_color)
28
else:
29
cell.set_facecolor(row_colors[k[0]%len(row_colors) ])
30
return ax.get_figure(), ax
31
32
fig,ax = render_mpl_table(df, header_columns=0, col_width=2.0)
33
fig.savefig("table_mpl.png")
34
Options-2 Use Plotly + kaleido
JavaScript
1
18
18
1
import plotly.figure_factory as ff
2
import pandas as pd
3
4
df = pd.DataFrame()
5
df['date'] = ['2016-04-01', '2016-04-02', '2016-04-03']
6
df['calories'] = [2200, 2100, 1500]
7
df['sleep hours'] = [8, 7.5, 8.2]
8
df['gym'] = [True, False, False]
9
10
fig = ff.create_table(df)
11
fig.update_layout(
12
autosize=False,
13
width=500,
14
height=200,
15
)
16
fig.write_image("table_plotly.png", scale=2)
17
fig.show()
18
For the above, the font size can be changed using the font
attribute:
JavaScript
1
7
1
fig.update_layout(
2
autosize=False,
3
width=500,
4
height=200,
5
font={'size':8}
6
)
7