我尝试将数据转发到Excel,但收到了主题错误。
我想将一些excel文件合并到一个excel文件中。首先,我创建了all_info数组,以便收集所有数据。
all_info = []
之后我读了每个excel文件。 Excel文件如下; sample1,sample2等。
data = pd.read_excel('sample1.xlsx', 'Sheet1')
我添加了每个excel文件'数据到下面的all_info数组。
for i in range(0, len(data)):
all_info.append(data)
在我组合all_info数组中的所有数据后,我在代码下面执行但收到了主题错误。
df = pd.DataFrame(all_info)
df.to_excel("all_info.xlsx")
您可能会在下面看到错误详情。
ValueError Traceback (most recent call last)
<ipython-input-85-5bff7d788042> in <module>()
1 df = pd.DataFrame(all_tweets)
----> 2 df.to_excel("all_info.xlsx")
/usr/lib/python2.7/dist-packages/pandas/core/frame.pyc in to_excel(self, excel_writer, sheet_name, na_rep, float_format, cols, header, index, index_label, startrow, startcol, engine, merge_cells)
1202 formatted_cells = formatter.get_formatted_cells()
1203 excel_writer.write_cells(formatted_cells, sheet_name,
-> 1204 startrow=startrow, startcol=startcol)
1205 if need_save:
1206 excel_writer.save()
/usr/lib/python2.7/dist-packages/pandas/io/excel.pyc in write_cells(self, cells, sheet_name, startrow, startcol)
525 colletter = get_column_letter(startcol + cell.col + 1)
526 xcell = wks.cell("%s%s" % (colletter, startrow + cell.row + 1))
--> 527 xcell.value = _conv_value(cell.val)
528 style = None
529 if cell.style:
/usr/lib/pymodules/python2.7/openpyxl/cell.pyc in _set_value(self, value)
339 def _set_value(self, value):
340 """Set the value and infer type and display options."""
--> 341 self.bind_value(value)
342
343 value = property(_get_value, _set_value,
/usr/lib/pymodules/python2.7/openpyxl/cell.pyc in bind_value(self, value)
278 def bind_value(self, value):
279 """Given a value, infer type and display options."""
--> 280 self._data_type = self.data_type_for_value(value)
281 if value is None:
282 self.set_value_explicit('', self.TYPE_NULL)
/usr/lib/pymodules/python2.7/openpyxl/cell.pyc in data_type_for_value(self, value)
260 elif isinstance(value, (datetime.datetime, datetime.date, datetime.time, datetime.timedelta)):
261 data_type = self.TYPE_NUMERIC
--> 262 elif not value:
263 data_type = self.TYPE_STRING
264 elif isinstance(value, basestring) and value[0] == '=':
/usr/lib/python2.7/dist-packages/pandas/core/generic.pyc in __nonzero__(self)
674 raise ValueError("The truth value of a {0} is ambiguous. "
675 "Use a.empty, a.bool(), a.item(), a.any() or a.all()."
--> 676 .format(self.__class__.__name__))
677
678 __bool__ = __nonzero__
ValueError: The truth value of a DataFrame is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().
答案 0 :(得分:1)
你可能想做这样的事吗?
fnames = ['sample1.xls', 'sample2.xls']
all_info = [pd.read_excel(f, 'Sheet1') for f in fnames]
df = pd.concat(all_info)
df.to_excel("all_info.xlsx")
这里,all_info是一个DataFrame列表,其中每个元素都包含不同的Excel数据。然后将它们连接成一个DataFrame并保存到磁盘......