ValueError Traceback (most recent call last)
Cell In[1], line 17
11 # 创建一个包含立春饮食建议的数据框
12 lunar_new_year_advice = {
13 ‘食物’: [‘大枣’, ‘山药’, ‘小米’, ‘豆豉’, ‘葱’, ‘姜’, ‘韭菜’, ‘虾仁’],
14 ‘特点’: [‘补脾胃’, ‘甘润’, ‘辛温发散’, ‘少酸多甘’, ‘清淡’]
15 }
—> 17 lunar_new_year_df = pd.DataFrame(lunar_new_year_advice)
19 # 整合两个数据框,找出既富含维生素E又符合立春饮食建议的食物
20 combined_df = pd.merge(vitamin_e_df, lunar_new_year_df, how=‘inner’, left_on=‘食物’, right_on=‘食物’)
File /usr/local/lib/python3.10/site-packages/pandas/core/frame.py:778, in DataFrame.init(self, data, index, columns, dtype, copy)
772 mgr = self._init_mgr(
773 data, axes={“index”: index, “columns”: columns}, dtype=dtype, copy=copy
774 )
776 elif isinstance(data, dict):
777 # GH#38939 de facto copy defaults to False only in non-dict cases
–> 778 mgr = dict_to_mgr(data, index, columns, dtype=dtype, copy=copy, typ=manager)
779 elif isinstance(data, ma.MaskedArray):
780 from numpy.ma import mrecords
File /usr/local/lib/python3.10/site-packages/pandas/core/internals/construction.py:503, in dict_to_mgr(data, index, columns, dtype, typ, copy)
499 else:
500 # dtype check to exclude e.g. range objects, scalars
501 arrays = [x.copy() if hasattr(x, “dtype”) else x for x in arrays]
–> 503 return arrays_to_mgr(arrays, columns, index, dtype=dtype, typ=typ, consolidate=copy)
File /usr/local/lib/python3.10/site-packages/pandas/core/internals/construction.py:114, in arrays_to_mgr(arrays, columns, index, dtype, verify_integrity, typ, consolidate)
111 if verify_integrity:
112 # figure out the index, if necessary
113 if index is None:
–> 114 index = _extract_index(arrays)
115 else:
116 index = ensure_index(index)
File /usr/local/lib/python3.10/site-packages/pandas/core/internals/construction.py:677, in _extract_index(data)
675 lengths = list(set(raw_lengths))
676 if len(lengths) > 1:
–> 677 raise ValueError(“All arrays must be of the same length”)
679 if have_dicts:
680 raise ValueError(
681 “Mixing dicts with non-Series may lead to ambiguous ordering.”
682 )
ValueError: All arrays must be of the same length