报错代码
代码语言:javascript复制s = pd.Series([[1, 2, 3], 'foo', [], [3, 4]])
s
0 [1, 2, 3] 1 foo 2 [] 3 [3, 4] dtype: object
代码语言:javascript复制s.explode()
AttributeError: 'Series' object has no attribute 'explode'
解决: 升级pandas至0.25以及以上版本
报错代码
代码语言:javascript复制s = pd.Series([[1, 2, 3], 'foo', [], [3, 4]])
s
0 [1, 2, 3] 1 foo 2 [] 3 [3, 4] dtype: object
代码语言:javascript复制s.explode()
AttributeError: 'Series' object has no attribute 'explode'
解决: 升级pandas至0.25以及以上版本