3 回答
TA贡献1860条经验 获得超9个赞
首先,感谢 Bernardo 的提示。我找到了一个体面的工作解决方案,但仍然有一个小问题。也许有人可以提供帮助。让我修改我的初始声明:这是我现在正在使用的代码:
temp_list=[]
headers_list=[]
for row in sheet.iter_rows(min_row=3, min_col=27, max_row=508, max_col=32): #Index starts at 1 // Here we set the rows/columns containing the data to be analyzed
for cell in row:
temp_list.append(cell.value)
for cell in row:
if cell.value == max(temp_list):
print(str(cell.column))
print(cell.value)
print(sheet.cell(row=1, column=cell.column).value)
headers_list.append(sheet.cell(row=1,column=cell.column).value)
else:
print('keep going.')
temp_list = []
这个公式有效,但有一个小问题:例如,如果一行有两次相同的值(即:25,9,25,8,9),这个循环将打印 2 个标题而不是一个。我的问题是:
我怎样才能让这个循环只考虑连续最大值的第一个匹配项?
TA贡献1936条经验 获得超6个赞
这似乎是一个典型的 INDEX/MATCH Excel 问题。
您是否尝试过检索每个 temp_list 中最大值的索引?
您可以使用 numpy.argmax() 之类的函数来获取“temp_list”数组中最大值的索引,然后使用此索引来定位标题并将字符串附加到名为“max_headers”的新列表中包含按出现顺序排列的所有标题字符串。
它看起来像这样
for cell in row:
temp_list.append(cell.value)
i_max = np.argmax(temp_list)
max_headers.append(cell(row = 1, column = i_max).value)
等等等等。当然,为了让它工作,你的 temp_list 应该是一个 numpy 数组而不是一个简单的 python 列表,并且必须定义 max_headers 列表。
TA贡献1810条经验 获得超4个赞
你可能想要这样的东西:
headers = [c for c in next(ws.iter_rows(min_col=27, max_col=32, min_row=1, max_row=1, values_only=True))]
for row in ws.iter_rows(min_row=3, min_col=27, max_row=508, max_col=32, values_only=True):
mx = max(row)
idx = row.index(mx)
col = headers[idx]
添加回答
举报