使用Python中的Pandas创建和保存表(.png)

时间:2017-06-25 14:07:11

标签: python python-3.x pandas png

我想使用Pandas包在Python中创建和保存表。

到目前为止,这是我的代码:

import pandas as pd

column1 = ['Measured Set', '1. set', '2. set', '3. set']
column2= ['Breached parameter(s) (Number of breaches / %)', 3, 3, 3]
column3 = ['Breached parameter(s) (Number of breaches / %)', 3, 3, 3]

data = {
    'Sensor': column1,
    'Sensor 1': column2,
    'Sensor 2': column3,
}

df = pd.DataFrame(data)
df

这是我的输出:enter image description here

这就是我想要的: enter image description here

所以我想:

  1. 将自动生成的左列替换为旁边的列,
  2. 遮蔽第二行和左列
  3. 将表格另存为.png文件
  4. 有人可以帮我解决这个问题吗?

0 个答案:

没有答案