Value Error: object of too small depth for desired array
问题 I want to correlate s1 and s2 variables in my zip_list. However, I have this error: "return multiarray.correlate2(a, v, mode) ValueError: object of too small depth for desired array" Is there anyone who could help me? s1 = [] s2 = [] date = [] for f in files: with open(f) as f: f.next() rows = csv.reader(f) for row in rows: item_list = [] for row_item in row: output_string = map(lambda x: '0' if x=='NULL' else x, row_item.split(",")) item_list.append(output_string) date = item_list[0] s1 =