错误:AttributeError:“NoneType”对象没有“is_extension”属性

时间:2021-04-14 14:35:59

标签: python pandas

我遇到了同样的问题:AttributeError: 'NoneType' object has no attribute 'is_extension' 如这篇文章:Pandas concat dataframes with different columns: AttributeError: 'NoneType' object has no attribute 'is_extension'。但是我已经尝试了他们所说的,它仍然不起作用......

Ì' 有两个数据框,df_score 和导入:

Iso-2 FAOSTAT Production % Transformation %
CN      41      0.79388                1

Iso-2  FAOSTAT  Production %
US      231      0.079465
AU       10      0.063684
BR       21      0.027884
IN      100      0.025836
UZ      235      0.009251

我在代码中使用了 pd.concat,就像上面几行代码一样,但这一次不起作用,该行是 df_score = pd.concat([df_score, importations], axis = 0)。我曾尝试直接在 .reset_index(drop=True) 中添加 ignore_index = True 或设置 pd.concat。有人知道吗?

0 个答案:

没有答案