使用Python中的win32com将数据框写入工作表

时间:2014-03-18 02:01:16

标签: python dataframe win32com

我想使用win32com.client将整个数据框打印到excel工作簿中。

单个值或数组可以正常工作,但是当我尝试使用维x * y复制和粘贴整个数据框时,它有如下错误:

TypeError: Objects for SAFEARRAYS must be sequences (of sequences), or a buffer object.

我想知道是否有办法输出数据框。提前谢谢。

我的代码出现上述错误:

sel = ws.Range('B11:O72')
sel.Value = db[:]

我这样做是因为逐个打印很慢。

1 个答案:

答案 0 :(得分:3)

希望这有助于回答您的问题:

import pandas as pd
import numpy as np
import win32com.client as MyWinCOM

# Book2.xlsx must already be open
xl = MyWinCOM.GetObject(None, "Excel.Application")
wb = xl.Workbooks("Book2.xlsx")
ws = wb.Worksheets("Sheet1")


d = {'time' : pd.Series([1., 2., 3., 4.], index=['a', 'b', 'c', 'd']),
     'legnth' : pd.Series([4., 5., 6., 7.], index=['a', 'b', 'c', 'd'])}
df = pd.DataFrame(d)

StartRow = 1
StartCol = 1
ws.Range(ws.Cells(StartRow,StartCol),# Cell to start the "paste"
         ws.Cells(StartRow+len(df.index)-1,
                  StartCol+len(df.columns)-1)
         ).Value = df.values

# OR
StartRow = 1
StartCol = 5
ws.Range(ws.Cells(StartRow,StartCol),# Cell to start the "paste"
         ws.Cells(StartRow+len(df.index)-1,
                  StartCol+len(df.columns))# No -1 for the index
         ).Value = df.to_records()